EasyOutput prediction

Iterating with .items()

What does this code print?

d = {"x": 10, "y": 20}
for k, v in d.items():
    print(k, v)

← → arrow keys to navigate

Sign in to save your progress.

Iterating with .items() - Python Dictionaries Quiz | Unnested