flush()清空文件缓存区

时间:2023-03-09 22:34:20
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()