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