demo_dictionary.py:
thisdict = { "apple": "green", "banana": "yellow", "cherry": "red" } print(thisdict)
C:\Users\My Name>python demo_dictionary.py
{'apple': 'green', 'banana': 'yellow', 'cherry': 'red'}