In this section you learned that:

for letter in 'abc':
    print(letter.upper())

Output:

A
B
C

phone_numbers = {"John Smith":"+37682929928","Marry Simpons":"+423998200919"}
for value in phone_numbers.keys():
    print(value)

Output:

John Smith
Marry Simpsons

phone_numbers = {"John Smith":"+37682929928","Marry Simpons":"+423998200919"}
for value in phone_numbers.values():
    print(value)

Output:

+37682929928
+423998200919