EasyOutput prediction

Dictionary key ordering (Python 3.7+)

What does this code print? (Python 3.7+)

d = {}
d["c"] = 3
d["a"] = 1
d["b"] = 2
print(list(d.keys()))

← → arrow keys to navigate

Sign in to save your progress.