d1={"a":1,"b":2,"c":3}
print(d1)
        #or
d2=dict({"a":1,"b":2,"c":3})
print(d2)
        #or
d3=dict([('a',1),('b',2),('c',3)])
print(d3)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: