myDictionary = { "first": "A", "second": "B", "third": "C", } myDictionary["fourth"] = "D" print(myDictionary) # Output: # {'first': 'A', 'second': 'B', 'third': 'C', 'fourth': 'D'}