Source Code:
(back to article)
original_list = [1, 2, 3] new_list = original_list[:] print(new_list)
Result:
Report an issue