# Python CodeRecipe|write()の使い方
❮ Home ❮ File Methods
# write()の例1
f = open("demofile2.txt", "a")
f.write("See you soon!")
f.close()
f = open("demofile2.txt", "r")
print(f.read())
# write()の定義及び使い方
write()関数は、指定されたテキストを書き込みます。 をファイルに追加します。 指定したテキストが挿入される場所は、ファイルモードとストリームによって異なります。 位置。 「a」:テキストは現在のファイルストリームの位置に挿入されます。 ファイルの末尾のデフォルト。 「w」:テキストが現在の位置に挿入される前にファイルが空になります ファイルストリームの位置、デフォルトは0。
# write()の構文
file.write(byte)
# write()の引数
パラメータ 説明
バイト 挿入するテキストまたはバイトオブジェクトを指定します。
その他の例
# write()の例2
The same example as above, but inserting a line break before the inserted
text:
f = open("demofile2.txt", "a")f.write("\nSee
you soon!")f.close()#open
and read the file after the appending:f = open("demofile2.txt", "r")
print(f.read())
❮ Home ❮ File Methods