In Python, a pair of braces creates an empty dictionary: {}.
E.g.
yourDict = {}
You can also use dict() constructor.
yourDict1=dict()