Answers for "python delete all lines in file"

5

how to delete everything on a file python

f = open('file.txt', 'r+')
f.truncate(0) # need '0' when using r+
Posted by: Guest on March-24-2020
0

python remove empty lines from file

import os


def remove_empty_lines(filename):
    if not os.path.isfile(filename):
        print("{} does not exist ".format(filename))
        return
    with open(filename) as filehandle:
        lines = filehandle.readlines()

    with open(filename, 'w') as filehandle:
        lines = filter(lambda x: x.strip(), lines)
        filehandle.writelines(lines)
Posted by: Guest on June-29-2021

Code answers related to "python delete all lines in file"

Python Answers by Framework

Browse Popular Code Answers by Language