這篇文章主要介紹了淺談Python中copy()方法的使用,Python中的拷貝分為潛拷貝和深拷貝,本文只是簡單介紹用法,需要的朋友可以參考下
copy()方法返回字典的淺拷貝。
語法
以下是copy()方法的語法:
?
1 dict.copy()參數
NA
返回值
此方法返回字典的淺拷貝。
例子
下面的例子顯示了copy()方法的使用。
?
1 2 3 4 5 6 #!/usr/bin/python dict1 = {'Name': 'Zara', 'Age': 7}; dict2 = dict1.copy() print "New Dictinary : %s" % str(dict2)當我們運行上面的程序,它會產生以下結果:
?
1 New Dictinary : {'Age': 7, 'Name': 'Zara'}