“Hapus baris kosong dari file python” Kode Jawaban

Hapus baris kosong dari file python

with open("new_file","r") as f:
 for i in f.readlines():
       if not i.strip():
           continue
       if i:
           print i,
Dead Dog

Python Hapus baris kosong dari 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)   
aso

Jawaban yang mirip dengan “Hapus baris kosong dari file python”

Pertanyaan yang mirip dengan “Hapus baris kosong dari file python”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya