python之文字檔案的讀取

2021-09-29 14:08:20 字數 602 閱讀 1922

檔案的讀取一般使用三個方法:

read([size]):從檔案中讀取size個字元,並作為結果返回。

readline():讀取一行內容作為結果返回。

readlines():文字檔案中,每一行作為乙個字串存入列表中,返回該列表。

檔案的讀取:

# 測試檔案讀取

with

open

(r'c:a.txt'

,'r'

,encoding=

'utf-8'

)as f:

str= f.read(2)

print

(str

)>>

>

悟空

檔案的遍歷讀取:

with

open

(r'c:a.txt'

,'r'

,encoding=

'utf-8'

)as f:

for i in f:

print

(i,end='')

>>

>

悟空悟能

悟淨

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 ...

讀取文字檔案

void ctestdlg onreadinfo cfile filewrite1 testwrite1.txt cfile modecreate cfile modewrite cfile filewrite2 testwrite2.txt cfile modecreate cfile modew...

Python 讀取txt文字檔案

python的文字檔案的內容讀取中,有三類方法 read readline readlines 這三種方法各有利弊。read read 的弊端 readline readline 的弊端 readlines readlines 的利端 readlines 的弊端 最簡單 最快速的逐行處理文字的方法 ...