2023年4月19日水曜日

Python ファイルの読み書き

 ファイルの読み書きの前に ファイルサイズとフォルダにあるファイルを調べる。

import os
print(os.path.getsize('C:\SRC\py\passwd.py'))
print(os.listdir('C:\SRC\py'))

これで見れる。

続いて

txtの読み書き。

まずは読み

web_test_file = open('C:\SRC\py\web_test.py') hello_content = web_test_file.read() print(hello_content)

1行ずつ読み込む事もできる。
web_test_file = open('C:\SRC\py\web_test.py')
hello_content1 = web_test_file.readlines()
print(hello_content1)

書き込み
web_test_file.close() web_test_file = open('C:\SRC\py\web_test.py','a') web_test_file.write('#追加') web_test_file.close() web_test_file = open('C:\SRC\py\web_test.py') hello_content = web_test_file.read() print(hello_content)


0 件のコメント:

コメントを投稿