python應用 TXT檔案的讀寫

2022-08-30 22:00:24 字數 965 閱讀 7945

python讀寫txt檔案不需要匯入包

python中常用的讀寫方式:

檔案開啟模式描述r

以唯讀模式開啟檔案,並將檔案指標指向檔案頭;如果檔案不存在會報錯

w以只寫模式開啟檔案,並將檔案指標指向檔案頭;如果檔案存在則將其內容清空,如果檔案不存在則建立

a以只追加可寫模式開啟檔案,並將檔案指標指向檔案尾部;如果檔案不存在則建立

r+在r的基礎上增加了可寫功能

w+在w的基礎上增加了可讀功能

a+在a的基礎上增加了可讀功能

b讀寫二進位制檔案(預設是t,表示文字),需要與上面幾種模式搭配使用,如ab,wb, ab, ab+(posix系統,包括linux都會忽略該字元)

r+ 、w+、 a+的區別:

以下主要是txt檔案讀寫的核心**介紹:

1.使用open的方式讀寫檔案,需要close檔案

1 inputs = open('

input/copurs.txt

', 'r'

)

2 outputs = open('

input/copurs_out.txt

', 'w'

)3for line in

inputs:

4outputs.write(line)

5outputs.close()

6 inputs.close()

2.使用with的方式讀寫檔案

with open('

test.txt

','r

') as file:

#讀檔案

for line in

file:

print

(line)

print

(type(line))

#寫檔案

file.write('

寫入檔案內容

')

java生成txt檔案,讀txt檔案

1.方法1 public static void main string args catch exception e system.out.println write end try filereader.close catch exception e system.out.println rea...

txt檔案讀操作

名稱 product.txt 檔案內容 1 f 開啟檔案product.txt 2 f.readlins 讀出檔案的所有行,每一行乙個字串,例如 iphone 9929 n 3 lines 由每一行變成的字串組成的列表 4 line lines的元素,即上面的字串。5 列印的結果是字串中的內容,即 ...

matlab檔案操作及讀txt檔案

matlab檔案操作 檔案操作是一種重要的輸入輸出方式,即從資料檔案讀取資料或將結果寫入資料檔案。matlab提供了一系列低層輸入輸出函式,專門用於檔案操作。1 檔案的開啟與關閉 1 開啟檔案 在讀寫檔案之前,必須先用fopen函式開啟或建立檔案,並指定對該檔案進行的操作方式。fopen函式的呼叫格...