Is it possible to iterate through list of keys in a Dictionary? something like this: tel = {'jack': 4098, 'sape': 4139} for (name, value) in tel.keys: print name, value Thanks