prog12_5.py

with open("fruits.txt", "a", encoding="utf-8") as file_obj:
    file_obj.write("ドリアンは9000円です!\n")

# プログラム12-5(追加モードで出力)