Python 列表 copy() 方法

实例

拷贝 fruits 列表:

  1. fruits = ["apple", "banana", "cherry"]
  2. x = fruits.copy()
  3. print(x)

定义和用法

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


语法

  1. list.copy()
参数值

无参数。

分类导航