new_list = my_listbecause: new_list will only be a reference to my_list, and changes made in new_list will automatically also be made in my_list and vice versa
There are two easy ways to copy a list
new_list = my_list.copy()or
new_list = list(my_list)