Iteratorer (forts.) Man kan nu iterera över dictionaries och filobjekt: for key in dict: print "value of", key, "is", dict[key] for line in file: print "Line:", line, Som en konsekvens av detta val finns även: if key in dict: print "Yes,", key, "is in the dictionary!"