Python with文とopen()を使ってファイルを作成する
環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)
構文
with open(ファイル名, 'w’) as 変数名:
変数名.write(ファイル名)
with文とopen()を使ってファイルを作成します。
使用例
with open('test22.txt', 'w') as new_file: new_file.write('test22.txt') new_file.closed
実行結果
ファイル「test22.txt」が表示されます。