Hi! I must be blind because I didn't find anything in the documentation which says iterating over an dictionary iterates over its keys.
For example
a_dictionary = {0: "zero", 1: "one"}
for x in a:
print x
gives you
0
1
Where is this information hidden? :)
Bye,
Dennis
--
http://mail.python.org/mailman/listinfo/python-list
