在python中使用copy函数的方法
copy:copy()函数的作用是用于返回一个字典的浅复制。
copy()函数语法:
dict.copy()
copy()函数使用方法:
dict1 = {'Name': 'Zara', 'Age': 7};dict2 = dict1.copy()print "New Dictinary : %s" % str(dict2)
dict1 = {'Name': 'Zara', 'Age': 7};
dict2 = dict1.copy()
print "New Dictinary : %s" % str(dict2)
输出结果为:
New Dictinary : {'Age': 7, 'Name': 'Zara'}