demo_dictionary_dict.py:
thisdict = dict(apple="green", banana="yellow", cherry="red") # note that keywords are not string literals # note the use of equals rather than colon for the assignment print(thisdict)
C:\Users\My Name>python demo_dictionary_dict.py
{'apple': 'green', 'banana': 'yellow', 'cherry': 'red'}