delete final blank lines file python code example
Example: 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,
with open("new_file","r") as f:
for i in f.readlines():
if not i.strip():
continue
if i:
print i,