Answers for "python delete all lines in text file"

0

python read and delete line from file

with open("yourfile.txt", "r") as f:
    lines = f.readlines()
with open("yourfile.txt", "w") as f:
    for line in lines:
        if line.strip("n") != "nickname_to_delete":
            f.write(line)
Posted by: Guest on January-20-2021
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 text file"

Python Answers by Framework

Browse Popular Code Answers by Language