方法一:
#read txt method one
f = open("./image/abc.txt")
line = f.readline()
while line:
print line
line = f.readline()
f.close()
方法二:
#read txt method two
f = open("./image/abchcksygq.txt")
for line2程式設計客棧 in open("./image/abc.txt"):
p程式設計客棧rint line2
方法三:
#read txt m three
f2 = open("./image/abc.txt","r")
lines = f2.readlines()
for line3 in lines:
print line3
1、如果txt檔案中有兩列,可以設定陣列,然後分別獲取資料
2、上述檔案使用的是相對路徑,當然也可以使用絕對路徑
本文標題: python之讀取txt檔案的方法小結
本文位址:
Python 之 讀取txt檔案
本文直接給出三種實現方法,如下。方法一 f open proc data.txt 返回乙個檔案物件 line f.readline 呼叫檔案的 readline 方法 while line print line,後面跟 將忽略換行符 print line,end 在 python 3中使用 line...
Python之讀取txt檔案
read txt method one f open image abc.txt line f.readline while line print line line f.readline f.close read txt method two f open image abc.txt for li...
Python 之 讀取txt檔案
本文直接給出三種實現方法,例如以下。方法一 f open proc data.txt 返回乙個檔案物件 line f.readline 呼叫檔案的 readline 方法 while line print line,後面跟 將忽略換行符 print line,end 在 python 3中使用 li...