Python Python ファイル操作 ファイル作成f = open('text.txt', 'w')f.write('Test\n')# print関数でもファイルに書き込めるprint('My', 'name', 'is', 'Mike', sep='#', end='!',... 2024.09.24 Pythonコンピュータプログラミング