Here are the built-in functions that deal with
dictionaries.
len (object ) →
integer
Return the number of items of a sequence or mapping.
dict (valList ) →
dictionary
Each element of the list must be a
2-element tuple; create a
dict with the first element as the key and
the second element as the value. Note that the
zip function produces a
list of 2-tuples
from two parallel lists.