summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/consider-iterating-dictionary/good.py
blob: c67b3997c8e57aa353d12b41a6648b049ab2ca7f (plain)
1
2
3
4
5
FRUITS = {"apple": 1, "pear": 5, "peach": 10}


for fruit in FRUITS:
    print(fruit)