Advertisements
Advertisements
Question
Consider a list:
list1 = [6, 7, 8, 9]
What is the difference between the following operation on the list1:
list1 *= 2
One Line Answer
Solution
This statement will change the list1 and assign the list with repeated elements i.e [6, 7, 8, 9, 6, 7, 8, 9] to list1.
shaalaa.com
List Operations
Is there an error in this question or solution?