# A dict (dictionary) is a data type that store keys/values myDict = {"name" : "bob", "language" : "python"} print(myDict["name"]) # Dictionaries can also be multi-line otherDict { "name" : "bob", "phone" : "999-999-999-9999" }