菜鳥筆記1首先讀取的txt檔案如下:
aaaaf110 0003e818 0003e1fc 0003e770 0003fffc 90現在要讀取其每行的第3個資料,將其組成乙個陣列,**如下:aaaaf110 0003e824 0003e208 0003e76c 0003fffc a5
aaaaf110 0003e814 0003e204 0003e760 0003fffc 85
aaaaf110 0003e7f0 0003e208 0003e764 0003fffc 68
aaaaf110 0003e7cc 0003e1fc 0003e758 0003fffc 2b
import codecs輸出結果為:f = codecs.open('data.txt', mode='r', encoding='utf-8') # 開啟txt檔案,以『utf-8』編碼讀取
line = f.readline() # 以行的形式進行讀取檔案
list1 =
while line:
a = line.split()
b = a[2:3] # 這是選取需要讀取的位數
line = f.readline()
f.close()
for i in list1:
print(i)
['0003e1fc']
['0003e208']
['0003e204']
['0003e208']
['0003e1fc']
Python 讀取txt檔案,排序並寫回檔案
c users sam desktop 資料競賽 個人徵信 1108 個人徵信 train bank detail train.txt 反斜槓的寫法會報編碼錯誤 f open c users sam desktop 資料競賽 個人徵信 1108 個人徵信 train bank detail trai...
Python 讀取TXT檔案
一 開啟檔案 f open filename,access mode r buffering 1 filename 檔名 access mode 開啟方式,r讀,w寫,a追加,r w a 都是以讀寫方式開啟,rb二進位制讀,wb二進位制寫,rb wb ab 二進位制讀寫 buffering 預設值 ...
python 讀取txt檔案
txt檔案內容 1.全部讀取 file open e others 測試.txt r 開啟檔案 f all file.read 讀取所有檔案內容 print f all file.close 關閉檔案結果 2.按行讀取 file open e others 測試.txt r 開啟檔案 for lin...