copy a list to another code example
Example 1: create copy of an array python
new_list = list.copy()
Example 2: copy one list to another python
thislist = ["apple", "banana", "cherry"]
mylist = thislist.copy()
print(mylist)
Example 3: python copy list
a=[1,2,3,4]
b=a[:]
''' now b has all elements of a'''