位置:首頁 > 腳本語言 > Python教學 > Python dict.copy()方法

Python dict.copy()方法

copy()方法返回字典的淺拷貝。

語法

以下是copy()方法的語法:

dict.copy()

參數

  • NA

返回值

此方法返回字典的淺拷貝。

例子

下麵的例子顯示了copy()方法的使用。

#!/usr/bin/python

dict1 = {'Name': 'Zara', 'Age': 7};

dict2 = dict1.copy()
print "New Dictinary : %s" %  str(dict2)

當我們運行上麵的程序,它會產生以下結果:

New Dictinary : {'Age': 7, 'Name': 'Zara'}