python簡單文字操作

2021-09-29 09:43:44 字數 1017 閱讀 6702

1、檔案的全文本操作

#方法一(一次讀入,統一處理):

fname =

input

("請輸入要開啟的檔名稱:"

)fo =

open

(fname,

"r")

txt = fo.read(

)#對全文txt進行處理

fo.close(

)

#方法二(按數量讀入,逐步處理):

fname =

input("請輸入要開啟檔案的名稱:")

fo =

open

(fname,

"r")

txt = fo.read(2)

#從檔案中讀取兩個位元組

while txt !=

" ":

#對txt進行處理

txt = fo.read(2)

fo.close(

)

2、文字的逐行操作

#方法一(一次讀入所有行,分行處理):

fname =

input

("請輸入要開啟的檔名稱:"

)fo =

open

(fname,

"r")

for line in fo.readlines():

print

(line)

fo.close(

)

#方法二(分行讀入,逐行處理)

fname =

input

("請輸入要開啟檔案的名稱:"

)fo =

open

(fname,

"r")

for line in fo:

print

(line)

fo.close(

)

python操作文字 python操作文字

d.write hi.nsecond hi.d.close d open a.txt r d.readline hi.n d.readline 一次讀一行,指標會改變 second hi.d.readline 一次讀一行,指標會改變 d.seek 0 文字的指標重置為0 d.read 100 表示一...

python 文字操作

f open r c users ldh desktop test.txt a encoding utf 8 f.write 123456 print f.read print f f.write 明天不上課,在家休息 content f.read 讀取檔案裡面所有的內容 content f.rea...

Python文字操作

檔案模式 操作字元 r唯讀方式開啟 w以寫方式開啟,有檔案時清空原檔案,無檔案時自動建立 a以追加模式開啟,從結尾處開始追加,無檔案時自動新建 r 以讀寫模式開啟 w 以讀寫模式開啟,其它參照 w a 以讀寫模式開啟,其它參照 a rb以二進位制讀模式開啟 wb以二進位制寫模式開啟,其它參照 w a...