You have already completed these exercises!
Do you want to take them again?
You completed the Python Copy Lists Exercises from W3Schools.com
Share on:
What is a correct syntax for making a copy of a list?
list2 = list1
list2 = list1.copy()
list2.copy(list1)