Question: What will list1 and list2 contain after the following statements are executed? list1 = [1, 2] * 2 list2 = [3] list2 += list1
What will list1 and list2 contain after the following statements are executed?
list1 = [1, 2] * 2
list2 = [3]
list2 += list1
Step by Step Solution
3.41 Rating (151 Votes )
There are 3 Steps involved in it
After the following statements are executed list1 1 2 2 list2 3 list2 list1 ... View full answer
Get step-by-step solutions from verified subject matter experts
