I want to build a dictionary in Python. However, all the examples that I see are instantiating a dictionary from a list, etc . ..
How do I create a new empty diction
>>> dict(a=2,b=4) {'a': 2, 'b': 4}
Will add the value in the python dictionary.