首發於微信公衆號:《Python編程時光》python
Python 語言裏有許多(並且是愈來愈多)的高級特性,是 Python 發燒友們很是喜歡的。在這些人的眼裏,可以寫出那些通常開發者看不懂的高級特性,就是高手,就是大神。編程
但你要知道,在團隊合做裏,炫技是大忌。微信
爲何這麼說呢?我說下本身的見解:ide
該篇是「炫技系列」的第二篇內容,在這個系列裏,我將總結盤點一下,我所見過的那些炫技操做。在這裏,若是你是 Python 發燒友,你能夠學到一些寫出超酷的代碼書寫技巧。同時,看了這些內容,對你在閱讀別人的代碼時,也許會有些幫助。函數
字典對象內置了一個 update 方法,用於把另外一個字典更新到本身身上。code
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> profile.update(ext_info) >>> print(profile) {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
若是想使用 update 這種最簡單、最地道原生的方法,但又不想更新到本身身上,而是生成一個新的對象,那請使用深拷貝。對象
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> from copy import deepcopy >>> >>> full_profile = deepcopy(profile) >>> full_profile.update(ext_info) >>> >>> print(full_profile) {'name': 'xiaoming', 'age': 27, 'gender': 'male'} >>> print(profile) {"name": "xiaoming", "age": 27}
使用 **
能夠解包字典,解包完後再使用 dict 或者 {}
就能夠合併。blog
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> full_profile01 = {**profile, **ext_info} >>> print(full_profile01) {'name': 'xiaoming', 'age': 27, 'gender': 'male'} >>> >>> full_profile02 = dict(**profile, **ext_info) >>> print(full_profile02) {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
若你不知道 dict(**profile, **ext_info)
作了啥,你能夠將它等價於開發
>>> dict((("name", "xiaoming"), ("age", 27), ("gender", "male"))) {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
在 Python 裏有一個很是強大的內置模塊,它專門用於操做可迭代對象。it
正好咱們字典也是可迭代對象,天然就能夠想到,可使用 itertools.chain()
函數先將多個字典(可迭代對象)串聯起來,組成一個更大的可迭代對象,而後再使用 dict 轉成字典。
>>> import itertools >>> >>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> >>> dict(itertools.chain(profile.items(), ext_info.items())) {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
若是能夠引入一個輔助包,那我就再提一個, ChainMap
也能夠達到和 itertools
一樣的效果。
>>> from collections import ChainMap >>> >>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> dict(ChainMap(profile, ext_info)) {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
使用 ChainMap 有一點須要注意,當字典間有重複的鍵時,只會取第一個值,排在後面的鍵值並不會更新掉前面的(使用 itertools 就不會有這個問題)。
>>> from collections import ChainMap >>> >>> profile = {"name": "xiaoming", "age": 27} >>> ext_info={"age": 30} >>> dict(ChainMap(profile, ext_info)) {'name': 'xiaoming', 'age': 27}
在 Python 3.9 以前,其實就已經有 |
操做符了,只不過它一般用於對集合(set)取並集。
利用這一點,也能夠將它用於字典的合併,只不過得繞個彎子,有點很差理解。
你得先利用 items
方法將 dict 轉成 dict_items,再對這兩個 dict_items 取並集,最後利用 dict 函數,轉成字典。
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> full_profile = dict(profile.items() | ext_info.items()) >>> full_profile {'gender': 'male', 'age': 27, 'name': 'xiaoming'}
固然了,你若是嫌這樣太麻煩,也能夠簡單點,直接使用 list 函數再合併(示例爲 Python 3.x )
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> dict(list(profile.items()) + list(ext_info.items())) {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
若你在 Python 2.x 下,能夠直接省去 list 函數。
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> dict(profile.items() + ext_info.items()) {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
Python 裏對於生成列表、集合、字典,有一套很是 Pythonnic 的寫法。
那就是列表解析式,集合解析式和字典解析式,一般是 Python 發燒友的最愛,那麼今天的主題:字典合併,字典解析式還可否勝任呢?
固然能夠,具體示例代碼以下:
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> {k:v for d in [profile, ext_info] for k,v in d.items()} {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
在 2 月份發佈的 Python 3.9.04a 版本中,新增了一個抓眼球的新操做符操做符: |
, PEP584 將它稱之爲合併操做符(Union Operator),用它能夠很直觀地合併多個字典。
>>> profile = {"name": "xiaoming", "age": 27} >>> ext_info = {"gender": "male"} >>> >>> profile | ext_info {'name': 'xiaoming', 'age': 27, 'gender': 'male'} >>> >>> ext_info | profile {'gender': 'male', 'name': 'xiaoming', 'age': 27} >>> >>>
除了 |
操做符以外,還有另一個操做符 |=
,相似於原地更新。
>>> ext_info |= profile >>> ext_info {'gender': 'male', 'name': 'xiaoming', 'age': 27} >>> >>> >>> profile |= ext_info >>> profile {'name': 'xiaoming', 'age': 27, 'gender': 'male'}
看到這裏,有沒有漲姿式了,學了這麼久的 Python ,沒想到合併字典還有這麼多的方法。本篇文章的主旨,並不在於讓你所有掌握這 7 種合併字典的方法,實際在工做中,你只要選用一種最順手的方式便可,可是在協同工做中,或者在閱讀他人代碼時,你不可避免地會碰到各式各樣的寫法,這時候你能下意識的知道這是在作合併字典的操做,那這篇文章就是有意義的。