Python/ref list copy

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python列表copy()方法

❮清单方法

复制 fruits 列表:

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

x = fruits.copy()
  

定义和用法

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

句法

list.copy()
  

参数值

没有参数

❮清单方法