Creating a Dictionary

dict_1 = {}

dict_2 = {"a": 1, "b": 2, "c": 3}
Creating a Dictionary dict_1 = {} dict_2 = { "a" : 1 , "b" : 2 , "c" : 3 }