“Python Hapus baris kosong dari file” 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

cara menghapus baris kosong dari file teks di spyder

with open(fname, 'r+') as fd:
    lines = fd.readlines()
    fd.seek(0)
    fd.writelines(line for line in lines if line.strip())
    fd.truncate()
Disgusted Dove

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

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

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya