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