prog9_21.py

ejdic = {"apple": "りんご", "baby": "赤ん坊", "cask": "樽"}
for key in ejdic:
    print(key)

# プログラム9-21(辞書をforで扱う)