How to read text file line by line and strip whitespaces from the right side of the string in Python

2 Answers

0 votes
fl = open("d:\data.txt")
for line in fl:
    print(line.rstrip())
fl.close()


'''
run:

python
java
c#
php

'''

 



answered Dec 20, 2017 by avibootz
edited Dec 20, 2017 by avibootz
0 votes
with open("d:\data.txt") as fl:
    for line in fl:
        print(line.rstrip())


'''
run:

python
java
c#
php

'''

 



answered Dec 20, 2017 by avibootz
edited Dec 20, 2017 by avibootz
...