February 2006
Intermediate to advanced
648 pages
14h 53m
English
A dictionary is an associative array or hash table that contains objects indexed by keys. You create a dictionary by enclosing the values in curly braces ({ }) like this:
a = {
"username" : "beazley",
"home" : "/home/beazley",
"uid" : 500
}To access members of a dictionary, use the key-indexing operator as follows:
u = a["username"] d = a["home"]
Inserting or modifying objects works like this:
a["username"] = "pxl" a["home"] = "/home/pxl" a["shell"] = "/usr/bin/tcsh"
Although strings are the most common type of key, you can use many other Python objects, including numbers and tuples. Some objects, including lists and dictionaries, cannot be used as keys, because their contents are allowed to change.
Dictionary membership is tested ...