[Python]ファイル書き込み[write関数]

Pythonでwrite関数を用いてファイル書き込みを行うためのサンプルコード一覧

基本

output = 'sample.txt'
test_str = 'test\n'
f = open(output, 'w')
f.write(test_str)
f.close()

with文

output = 'sample.txt'
test_str = 'test\n'
with open(output, "w") as f:
    f.write(test_str)

フォルダ作成+ファイル書き込み

import os

dir_path = 'sample'
output = 'sample.txt'
test_str = 'test\n'

if not os.path.exists(dir_path):
    os.mkdir(dir_path)
with open(os.path.join(dir_path, output), "w") as f:
    f.write(test_str)
タイトルとURLをコピーしました