Answers for "python remove empty lines from file only while reading"

0

remove empty lines from file python

with open("new_file","r") as f:
 for i in f.readlines():
       if not i.strip():
           continue
       if i:
           print i,
Posted by: Guest on November-05-2020

Code answers related to "python remove empty lines from file only while reading"

Python Answers by Framework

Browse Popular Code Answers by Language