- a_dict = {“one”: 1}
- print (a_dict)
- a_dict[“one”] = 2
- print (a_dict)
- a_dict2 = {“one”: [1,2]}
- print (a_dict2[“one”][0]) #if you had to look this up, think about why it is working. I encourage you to print of a_dict[“one”] to help with your understanding.