Given this nested dictionary, how could I print all the \"phone\" values using a for loop?
people = { \'Alice\': { \'phone\': \'2341\', \
for d in people.values(): print d['phone']