字典(dict)是 Python 提供的一种常用的数据结构,它用于存放具有映射关系的数据。Python字典可存储任意类型对象,如字符串、数字、元组等,优点是取值方便,速度快。本文主要介绍Python 字典(dict) copy() 方法

Python 字典方法

例如:

复制car字典:

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

x = car.copy()

print(x)

1、定义和用法

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

2、调用语法

dictionary.copy()

3、参数说明

没有参数

4、使用示例

dict1 = {'Name': 'Zara', 'Age': 7};
 
dict2 = dict1.copy()
print"New Dictinary : %s" %  str(dict2)

Python 字典方法

推荐文档