轻松上手,快乐学习!

Python 字典 copy() 方法


实例

复制car字典:
car = {
    "brand": "Ford",
    "model": "Mustang",
    "year": 1964
}

x = car.copy()

print(x)
运行示例»

定义和用法

copy()方法返回指定字典的副本。

语法

dictionary.copy()

参数值

没有参数