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