How to Read a File with Python
See Python: Tips and Tricks for similar articles.In Python, you open a file using the built-in open()
function and passing it the path to the file you want to open. By default, files are opened as read-only.
Here's a very basic example of opening and reading a file that is the current directory:
f = open('myfile.txt')
contents = f.read()
print(contents)
f.read()
just reads the entire file as a string into a variable. So, this will just print the entire contents of the file.
Alternatively, you might want to read the file into a list, one line at a time. You can do that with the readlines()
method:
f = open('myfile.txt')
file_as_list = f.readlines()
for line in file_as_list:
print(line)
The results may surprise you though. When printed, each line will be followed by two newline characters. That's because readlines()
does not strip the newline character when splitting the contents into a list. Each list item will end in a newline characters. That accounts for one of the newline character. The other newline character comes by default at the end of each call to print()
.
There are a couple of easy ways to address this:
- Explicitly pass an empty string to
end
in the call toprint()
:f = open('myfile.txt') file_as_list = f.readlines() for line in file_as_list: print(line, end='')
- Use
f.read()
combined withsplitlines()
instead ofreadlines()
:
Asf = open('myfile.txt') contents = f.read() file_as_list = contents.splitlines() for line in file_as_list: print(line)
splitlines()
actually splits on the newline character, the newline character is not left hanging at the end of each line.
Related Articles
- Fixing WebVTT Times with Python
- Using Python to Convert Images to WEBP
- Scientific Notation in Python
- Understanding Python’s __main__ variable
- Converting Leading Tabs to Spaces with Python
- pow(x, y, z) more efficient than x**y % z and other options
- A Python Model for Ping Pong Matches
- Bulk Convert Python files to IPython Notebook Files (py to ipynb conversion)
- Python’s date.strftime() slower than str(), split, unpack, and concatenate?
- Basic Python Programming Exercise: A Penny Doubled Every Day
- Bi-directional Dictionary in Python
- How to find all your Python installations on Windows (and Mac)
- Associate Python Files with IDLE
- Change Default autosave Interval in JupyterLab
- Python: isdigit() vs. isdecimal()
- Python Clocks Explained
- Python Color Constants Module
- Maximum recursion depth exceeded while calling a Python object
- When to use Static Methods in Python? Never
- Finally, a use case for finally – Python Exception Handling
- Creating an Email Decorator with Python and AWS
- Python Coding Challenge: Two People with the Same Birthday
- How to Create a Simple Simulation in Python – Numeric Data
- Collatz Conjecture in Python
- Simple Python Script for Extracting Text from an SRT File
- Python Virtual Environments with venv
- Mapping python to Python 3 on Your Mac
- How to Make IDLE the Default Editor for Python Files on Windows
- How to Do Ternary Operator Assignment in Python
- How to Convert Seconds to Years with Python
- How to Create a Python Package
- How to Read a File with Python (this article)
- How to Check the Operating System with Python
- How to Use enumerate() to Print a Numbered List in Python
- How to Repeatedly Append to a String in Python
- Checking your Sitemap for Broken Links with Python
- How to do Simultaneous Assignment in Python
- Visual Studio Code - Opening Files with Python open()
- How to Slice Strings in Python
- How Python Finds Imported Modules
- How to Merge Dictionaries in Python
- How to Index Strings in Python
- How to Create a Tuple in Python