SyntaxFix
Write A Post
Hire A Developer
Questions
The idiomatic way to do this in Python is to use rstrip('\n'):
for line in open('myfile.txt'): # opened in text-mode; all EOLs are converted to '\n' line = line.rstrip('\n') process(line)
Each of the other alternatives has a gotcha: