my_dict = {"key": "value", "a": 1, 2: "b"} print(my_dict["key"]) # Output: value print(my_dict["a"]) # Output: 1 print(my_dict[2]) # Output: b