Python Day 4: Dictionaries
Dictionaries
Indexes for dictionaries are called keys. Keys are associated with a value called a key-value pair. A dictionary is unordered. Compared to a List, there is no index starting at 0.
Dictionaries are typed with braces [python]{}[/python]. To assign a dictionary to the client1 variable:
[python]client1