Python 列表/数组方法
拷贝 fruits 列表:
fruits = ['apple', 'banana', 'cherry', 'orange'] x = fruits.copy()
运行实例
copy() 方法返回指定列表的副本。
list.copy()
无参数。