logo

Python File Methods


Show

A file object is created using an open function and here is a list of functions that can be called on this object -

Sr.No.Methods with Description
1file.close()

Close the file. A closed file cannot be read or written anymore.

2file.flush()

Flush the internal buffer, like stdio's flush. This may be a no-op on some file-like objects.

3file.fileno()

Returns the integer file descriptor that is used by the underlying implementation to request I/O operations from the operating system.

4file.isatty()

Returns True if the file is connected to a TTY(-like) device, else False.

5file.next()

Returns the next line from the file each time it is being called.

6file.read([size])

Reads at most size bytes from the file (less if the read hits EOF before obtaining size bytes).

7file.readline([size])

Reads one entire line from the file. A trailing newline character is kept in the string.

8file.readlines([sizehint])

Reads until EOF using readline() and returns a list containing the lines. If the optional sizehint argument is present, instead of reading up to EOF, whole lines totaling approximately sizehint bytes (possibly after rounding up to an internal buffer size) are read.

9file.seek(offset[, whence])

Sets the file's current position

10file.tell()

Returns the file's current position

11file.truncate([size])

Truncates the file's size. If the optional size argument is present, the file is truncated to (at most) that size.

12file.write(str)

Writes a string to the file. There is no return value.

13file.writelines(sequence)

Writes a sequence of strings to the file. The sequence can be any iterable object producing strings, typically a list of strings.

Let us go through them briefly:

Here at Intellinuts, we have created a complete Python tutorial for Beginners to get started in Python.