Python iter pada nilai kunci DIC

for k, v in d.items():
    print(k, v)
# key1 1
# key2 2
# key3 3
Tirbo06