myDict = { "message": "Hello Grepper!" } for key, value in myDict.items(): print(key) #Output: message print(value) #Output: Hello Grepper!