# Python CodeRecipe|flush()の使い方

Home File Methods

# flush()の例1

f = open("myfile.txt", "a")
f.write("Now the file has one more line!")
f.flush()
f.write("...and another one!")

# flush()の定義及び使い方

flush()関数は内部をクリーンアップします。 buffer。

# flush()の構文

file.flush()

# flush()の引数

パラメータなし

Home File Methods