what does copy.copy does in python code example
Example: .copy python
new_list = list.copy()
# returns a new list without modifying the orginal list.
new_list = list.copy()
# returns a new list without modifying the orginal list.