Run
list_1 = [22, 44, 66] list_2 = [11, 33, 55] # Create a list of lists my_list = [list_1, list_2] # Make a copy of this list of lists my_list_copy = my_list.copy() # Modify element of the inner list at the original source list_1[0] = 100 print(f"Original list : {my_list}") print(f"Copied list : {my_list_copy}")
Output