Python字典copy()
方法用於返回字典的淺拷貝。
語法
以下是copy()
方法的語法 -
dict.copy()
引數
返回值
範例
以下範例顯示copy()
方法的用法 -
#!/usr/bin/python3
dict1 = {'Name': 'Maxsu', 'Age': 7, 'Class': 'First'}
dict2 = dict1.copy()
print ("New Dictionary : ",dict2)
當執行上面的程式,它產生以下結果 -
New dictionary : {'Name': 'Maxsu', 'Age': 7, 'Class': 'First'}