copy
时间: 2023-09-10 21:15:17 浏览: 94
Copy here
`copy()` 是 Python 中的一个内置函数,用于复制一个对象并返回一个新的副本。这个函数可以用于任何可变和不可变类型的对象,包括列表、元组、字典等等。下面是一个示例:
```
old_list = [1, 2, 3]
new_list = old_list.copy()
print(old_list) # [1, 2, 3]
print(new_list) # [1, 2, 3]
new_list.append(4)
print(old_list) # [1, 2, 3]
print(new_list) # [1, 2, 3, 4]
```
在上面的示例中,我们首先创建了一个包含三个元素的列表 `old_list`,然后使用 `copy()` 方法创建了一个新的列表 `new_list`。由于 `copy()` 方法返回的是一个新的对象,因此修改 `new_list` 不会影响 `old_list` 的值。
阅读全文