prog9_13.py

color_en = ("red", "green", "blue", "yellow")
color_ja = ("赤", "緑", "青", "黄")
for e, j in zip(color_en, color_ja):
    print(f"{e}は日本語で{j}です")

# プログラム9-13(zipの使い方)