Python/ref dictionary copy

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

<languages />

Python字典copy()方法

❮字典方法

复制 car 字典:

    car = {
  "brand": "Ford",
  "model": "Mustang",
  
    "year": 1964
}


x = car.copy()

print(x)

定义和用法

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

句法

dictionary.copy()
  

参数值

没有参数

❮字典方法