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()

  

                                                                   -------  知识无价,汗水有情,如需搬运请注明出处,谢谢!

你可能感兴趣的:(flush()清空文件缓存区)