Home / Python Tips Generated By ChatGPT / Copying Lists in Python Make a copy of a list, not just a reference. Source Code original_list = [1, 2, 3] copied_list = original_list[:]