Python 列表 copy() 方法

实例

拷贝 fruits 列表:

fruits = ['apple', 'banana', 'cherry', 'orange']

x = fruits.copy()

运行实例

定义和用法

copy() 方法返回指定列表的副本。

语法

list.copy()

参数值

无参数。