Reading files is part of the Python standard library. This means you do not have to include any module.
There are two ways to read files:
- line by line
- read block
In this article we will show you both methods.
Related course: Complete Python Programming Course & Exercises
The solution you use depends on the problem you are trying to solve.
Examples
Line by line
To read files, you can use the readlines() function. This will read a file line by line and store it into a list:
Type the code below, save it as file.py and run it.
1 |
#!/usr/bin/env python |
Read block
You may not always want to read a file line by line. Take for example, if your file
does not have newlines or is a binary file. To read a file and store into a string,
use the read() function instead:
1 |
#!/usr/bin/env python |
If you are a beginner, then I highly recommend this YouTube Python Playlist.
Exercise
- Read a file and number every line
- Find out what the program does if the file doesnגt exist.
- What happens if you create a file with another user and try to open it?