products = [("もも", 250), ("なし", 200), ("ぶどう", 900)] for fruit, price in products: print(f"{fruit}は{price}円です!") # プログラム9-9(for文でのアンパック)