how to create a copy list function in python code example
Example 1: .copy python
new_list = list.copy()
# returns a new list without modifying the orginal list.
Example 2: python copy list
a=[1,2,3,4]
b=a[:]
''' now b has all elements of a'''