Python 去除文字檔案中的空行

2021-09-13 01:31:25 字數 650 閱讀 9232

讀取存在空行的檔案,刪除其中的空行,並將其儲存到新的檔案中;

#!/usr/bin/env python

# -*- coding: utf-8 -*-

# @time : 2019/3/18 21:41

# @author : cunyu

# @site : cunyu1943.github.io

# @file : deleteblanklines.py

# @software: pycharm

"""讀取存在空行的檔案,刪除其中的空行,並將其儲存到新的檔案中

"""with

open

('old.txt'

,'r'

,encoding =

'utf-8'

)as fr,

open

('new.txt'

,'w'

,encoding =

'utf-8'

)as fd:

for text in fr.readlines():

if text.split():

fd.write(text)

print

('輸出成功....'

)

python 讀寫文字檔案

本人最近新學python 用到文字檔案的讀取,經過一番研究,從網上查詢資料,經過測試,總結了一下讀取文字檔案的方法.a f open filename r content f.read decode utf 8 b f codecs.open encoding utf 8 content f.rea...

Python讀取文字檔案

給定c data hello.txt,內容如下 jack hello,how are you?rose i m good.按行讀取 filepath r c data hello.txt with open filepath as txtfile for line in txtfile print ...

Python 讀寫文字檔案

def readfile filename,mode r 讀取檔案內容 filename 檔名 return string bin 若檔案不存在,則返回空字串 import os if not os.path.exists filename return fp open filename,mode,...