Result Size: 625 x 571
demo_dictionary_dict.py:
x
 
thisdict = dict(brand="Ford", model="Mustang", year=1964)
# 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
{'brand': 'Ford', 'model': 'Mustang', 'year': 1964}