ファイル書き込み
資料
スライド
ソースコード
https://github.com/pon-wchoco/python_beginner/tree/main/src002/py102
import os
def main():
# 書き込むファイルのパス
path = os.path.dirname(__file__) + "\write.txt"
mojicode = "utf-8"
# mojicode = "shift_jis"
# "a" : 追記モード
# "w" : 上書きモード
# "x" : 存在しなかったら作成するモード
mode = "a" # "a", "w", "x"
with open(file=path, encoding=mojicode, mode=mode) as f:
# 改行は \n
f.write("こんばんは")
if __name__ == "__main__":
main()
メンターやってます!
個別でのご相談も承っております☆
お気軽にお問い合わせください!
https://menta.work/plan/6341?share=score
Bitly
コメント