代码示例:(标识:python_list_copy_1)
python_list_copy_1.py
thislist = ["apple", "banana", "cherry"]
mylist = thislist.copy()
print(mylist)
运行结果: