StudySession
What output will the following Python code give us:list = [1, 2, 3]list2 = [4, 5]list.extend(list2)print(list)
1 year ago | [YT] | 57
StudySession
What output will the following Python code give us:
list = [1, 2, 3]
list2 = [4, 5]
list.extend(list2)
print(list)
1 year ago | [YT] | 57