How to remove whitespaces in the beginning of every string in a file with python
?
I have a file myfile.txt
with the strings as shown below in it:
_ _ Amazon.inc
Arab emirates
_ Zynga
Anglo-Indian
Those underscores are spaces.
The code must be in a way that it must go through each and every line of a file and remove all those whitespaces, in the beginning of a line.
I've tried using lstrip
but that's not working for multiple lines and readlines()
too.
Using a for
loop can make it better?
Assuming that your input data is in infile.txt, and you want to write this file to output.txt, it is easiest to use a list comprehension: