#copying list[do not do this method] list_1 = [1] list_2 = list_1 list_1[0] = 2 print(list_2)
practice codes of python