Python 字典 Dictionary copy()方法
Python 字典 Dictionary copy()方法
Python 字典(Dictionary) copy() 函數(shù)返回一個字典的淺復(fù)制。
語法
copy()方法語法:
dict.copy()
參數(shù)
- NA。
返回值
返回一個字典的淺復(fù)制。
實例
以下實例展示了 copy()函數(shù)的使用方法:
#!/usr/bin/python dict1 = {'Name': 'Zara', 'Age': 7}; dict2 = dict1.copy() print "New Dictinary : %s" % str(dict2)
以上實例輸出結(jié)果為:
New Dictinary : {'Age': 7, 'Name': 'Zara'}
直接賦值和 copy 的區(qū)別
可以通過以下實例說明:
#!/usr/bin/python # -*- coding: UTF-8 -*- dict1 = {'user':'codebaoku','num':[1,2,3]} dict2 = dict1 # 淺拷貝: 引用對象 dict3 = dict1.copy() # 淺拷貝:深拷貝父對象(一級目錄),子對象(二級目錄)不拷貝,還是引用 # 修改 data 數(shù)據(jù) dict1['user']='root' dict1['num'].remove(1) # 輸出結(jié)果 print(dict1) print(dict2) print(dict3)
實例中 dict2 其實是 dict1 的引用(別名),所以輸出結(jié)果都是一致的,dict3 父對象進行了深拷貝,不會隨dict1 修改而修改,子對象是淺拷貝所以隨 dict1 的修改而修改。
{'num': [2, 3], 'user': 'root'} {'num': [2, 3], 'user': 'root'} {'num': [2, 3], 'user': 'codebaoku'}
相關(guān)文章
- Python break 語句
- Python continue 語句
- Python 詞典
- Python 分而治之
- Python 排序算法
- Python3 文件讀寫
- Python3 多線程
- Python3 日期和時間
- Python3 MySQL 數(shù)據(jù)庫連接 - PyMySQL 驅(qū)動
- Python sqrt() 函數(shù)
- Python uniform() 函數(shù)
- Python os.fchmod() 方法
- Python os.isatty() 方法
- Python os.stat() 方法
- Python isdecimal()方法
- Python ljust()方法
- Python lower()方法
- Python 字典 Dictionary clear()方法
- Python 字典 Dictionary has_key()方法
- Python time asctime()方法