Python File flush() 方法
python file flush() 方法
flush() 方法是用來刷新緩沖區(qū)的,即將緩沖區(qū)中的數(shù)據(jù)立刻寫入文件,同時清空緩沖區(qū),不需要是被動的等待輸出緩沖區(qū)寫入。
一般情況下,文件關(guān)閉后會自動刷新緩沖區(qū),但有時你需要在關(guān)閉前刷新它,這時就可以使用 flush() 方法。
語法
flush() 方法語法如下:
fileobject.flush();
參數(shù)
無
返回值
該方法沒有返回值。
實例
以下實例演示了 flush() 方法的使用:
實例
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開文件 fo = open("codebaoku.txt", "wb") print "文件名為: ", fo.name # 刷新緩沖區(qū) fo.flush() # 關(guān)閉文件 fo.close()
以上實例輸出結(jié)果為:
文件名為: codebaoku.txt
相關(guān)文章
- Python 教程
- Python 環(huán)境搭建
- Python 函數(shù)
- Python 面向?qū)ο?/a>
- Python 正則表達(dá)式
- Python 多線程
- Python XML 解析
- Python 二維數(shù)組
- Python 節(jié)點
- Python 排序算法
- Python 圖算法
- Python 大O符號
- Python 算法理由
- Python3 集合(Set)
- Python3 for while 循環(huán)語句
- Python3 迭代器
- Python3 模塊
- Python3 錯誤和異常
- Python3 網(wǎng)絡(luò)編程
- Python3 多線程