Python 列表 copy() 方法
Python基础 2022-06-06 15:26:21小码哥的IT人生shichen
Python 列表 copy() 方法
实例
拷贝 fruits 列表:
fruits = ['apple', 'banana', 'cherry', 'orange']
x = fruits.copy()
完整实例:
fruits = ["apple", "banana", "cherry"]
x = fruits.copy()
print(x)
定义和用法
copy() 方法返回指定列表的副本。
语法
list.copy()
参数值
无参数。