# 0113.py tab=dict(a=1, b=2) tab1=dict(b=300, c=4, d=5) tab.update(tab1) print tab # {'a': 1, 'c': 4, 'b': 300, 'd': 5}