Slide 14
Slide 14 text
a thing that holds data. has key:value pairs
keys unique, values whatever, can be changed
e.g.
x = {‘MSI’:326,’MHI’:162,’BSI’:247}
print x[‘MSI’] # will print 326
x[‘MHI’] = 225 # now equals 225
python dictionaries: quick! refresher