Copy a List
You cannot copy a list simply by typing list2 =
, because:
list1list2
will only be a reference to list1
, and changes made in list1
will automatically also be made in list2
.
Use the copy() method
You can use the built-in List method copy()
to copy a list. Continue reading Python – Copy Lists