You can also use python's collections.Chainmap which was introduced in python 3.3.
from collections import Chainmap
c = Chainmap(a, b)
c['a'] # returns 1
This has a few possible advantages, depending on your use-case. They are explained in more detail here, but I'll give a brief overview:
This mainly makes it useful for things like configuration dictionaries.