Python 3 – 字典 copy() 方法
描述
方法 copy() 返回字典的一个浅拷贝。
语法
copy() 方法的语法如下:
dict.copy()
参数
NA
返回值
该方法返回字典的一个浅拷贝。
示例
以下示例展示了 copy() 方法的使用。
#!/usr/bin/python3
dict1 = {'Name': 'Manni', 'Age': 7, 'Class': 'First'}
dict2 = dict1.copy()
print ("New Dictionary : ",dict2)
结果
当我们运行上面的程序时,它会产生以下结果:
New dictionary : {'Name': 'Manni', 'Age': 7, 'Class': 'First'}