Well done!
You have completed List Operations and Copying in Python Quiz!
Quiz Question 1 of 5
You have two lists: list1 = [1, 2, 3]
and list2 = list1.copy()
. After executing list2[0] = 13
, which of the following statements about the relationship between list1
and list2
is true?
Choose the correct answer below: