#a dictionary dict = { "key": "value", "other_key": "value" } #get a value from the dictionary using the key print(dict["key"]) #you can also get a value from the dictionary using a normal index: print(dict[1])