How to Use the flush () method to operate files in a Python program, pythonflush
The flush () method refreshes the internal buffer, such as the fflush of standard input and output. This is a file-like object with no operation.
Automatically refresh the file when Python is disabled. However, you may need to refresh the data before closing any file.
Syntax
The following is the syntax of the flush () method:
FileObject. flush ();
Parameters
Return Value
This method does not return any value.
Example
The following example shows how to use the flush () method.
#! /Usr/bin/python # Open a filefo = 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 filefo. close ()
When we run the above program, it will produce the following results:
Name of the file: foo.txt