阅读背景:

flush()清空文件缓存区

来源:互联网 
# 缓冲区:cpu 一级缓存  二级缓存   三级缓存
import time

f =open('2.txt','a+' ,encoding='utf-8')

f.write('helloworld\n')
f.write('helloworld\n')
f.write('helloworld\n')
f.write('helloworld\n')
f.write('helloworld\n')
# 程序执行到这暂停,时间在sleep方法写数字
time.sleep(5)

# 清空缓冲区域(释放这个区域,将来可以分配任何数据),将缓冲区数据写入到硬盘
f.flush()

f.close()
# 缓冲区:cpu 一级缓存  二级缓存   三级缓存
import time

f 



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: