您好,登錄后才能下訂單哦!
這篇文章主要介紹python中ChainMap突變怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1、ChainMap支持突變。換句話說,允許更新、添加、刪除和彈出鍵。這種情況這些操作只作用于第一個映射。
>>> from collections import ChainMap >>> numbers = {"one": 1, "two": 2} >>> letters = {"a": "A", "b": "B"} >>> alpha_num = ChainMap(numbers, letters) >>> alpha_num ChainMap({'one': 1, 'two': 2}, {'a': 'A', 'b': 'B'}) >>> # Add a new key-value pair >>> alpha_num["c"] = "C" >>> alpha_num ChainMap({'one': 1, 'two': 2, 'c': 'C'}, {'a': 'A', 'b': 'B'}) >>> # Update an existing key >>> alpha_num["b"] = "b" >>> alpha_num ChainMap({'one': 1, 'two': 2, 'c': 'C', 'b': 'b'}, {'a': 'A', 'b': 'B'}) >>> # Pop keys >>> alpha_num.pop("two") 2 >>> alpha_num.pop("a") Traceback (most recent call last): ... KeyError: "Key not found in the first mapping: 'a'" >>> # Delete keys >>> del alpha_num["c"] >>> alpha_num ChainMap({'one': 1, 'b': 'b'}, {'a': 'A', 'b': 'B'}) >>> del alpha_num["a"] Traceback (most recent call last): ... KeyError: "Key not found in the first mapping: 'a'" >>> # Clear the dictionary >>> alpha_num.clear() >>> alpha_num ChainMap({}, {'a': 'A', 'b': 'B'})
2、改變給定鏈映射內容的操作只會影響第一個映射,即使試圖改變列表中的其他映射中的鍵。
可以使用此行為創建可更新的鏈映射,而不修改原始輸入字典。在這種情況下,您可以使用空字典作為ChainMap的第一個參數。
>>> from collections import ChainMap >>> numbers = {"one": 1, "two": 2} >>> letters = {"a": "A", "b": "B"} >>> alpha_num = ChainMap({}, numbers, letters) >>> alpha_num ChainMap({}, {'one': 1, 'two': 2}, {'a': 'A', 'b': 'B'}) >>> alpha_num["comma"] = "," >>> alpha_num["period"] = "." >>> alpha_num ChainMap( {'comma': ',', 'period': '.'}, {'one': 1, 'two': 2}, {'a': 'A', 'b': 'B'} )
以上是“python中ChainMap突變怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。