ejdic = {"apple": "りんご", "baby": "赤ん坊", "cask": "樽"} print(f"辞書には{len(ejdic)}項目あります。") print(f"見出し語は", list(ejdic), "です。") # プログラム9-20(辞書の項目数とキーの一覧)