Python KT > 1c. Dictionary > Flashcards
dictionary method (x3+2 default)
.keys .values .items => return tuples .get(key, default value) .setdefault(key, some value) => only assign if there is no key
nice printing of dictionary
pair \n and in order
import pprintpprint.pprint(mydict)