Defining Dictionaries: shows an example of a dictionary definition.
d = {"A":"a", "B":"b"} print d print d["A"] print d["B"]