1. 程式人生 > >python中字典的方法update

python中字典的方法update

python date pda 使用 update one 兩個 場景 upd

使用場景:涉及兩個字典的合並時
實例:

>>> D1 = {'one':1, 'two':2}
>>> D2 = {'three':3}
>>> D1.update(D2)
>>> D1
{'one': 1, 'two': 2, 'three': 3}
>>> D1 = {'one':1, 'two':2}
>>> D1.update(three=3)
>>> D1
{'one': 1, 'two': 2, 'three': 3}

python中字典的方法update