Python关闭时自动刷新文件。但是可能要关闭任何文件之前刷新数据。
语法
以下是flush()方法的语法:
fileObject.flush();
参数
返回值
此方法不返回任何值。
例子
下面的例子显示了flush()方法的使用。
#!/usr/bin/python
# Open a file
fo = open("foo.txt", "wb")
print "Name of the file: ", fo.name
# Here it does nothing, but you can call it with read operation.
fo.flush()
# Close opend file
fo.close()
当我们运行上面的程序,它会产生以下结果:
Name of the file: foo.txt
Copyright © 2019- gamedaodao.com 版权所有 湘ICP备2022005869号-6
违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com
本站由北京市万商天勤律师事务所王兴未律师提供法律服务