Home > Article > Backend Development > Multiple ways to Clone or Copy a list in Python
Python provide multiple ways to achieve the desired result. For example, to copy a list to another list there are different methods:
#Method 1
lstcopy = lst[:]
print("Cloning By list slicing lst[:] ",lstcopy)
#Method2
lstcopy = lst.copy()
print("Cloning By list copying lst.copy() ",lstcopy)
#Method3
lstcopy = [i for i in lst]
print("Cloning By list Comprehension ",lstcopy)
#Method4
lstcopy = []
for i in lst :
lstcopy.append(i)
print("Cloning By list append ",lstcopy)
Thanks,
I hope you learn something new from this article! Thanks for your support
The above is the detailed content of Multiple ways to Clone or Copy a list in Python. For more information, please follow other related articles on the PHP Chinese website!