python讀取txt檔案的方法:先開啟文件,程式碼為【f = open('/tmp/test.txt')】;然後進行讀取,程式碼為【
本教學操作環境:windows7系統、python3.9版,此方法適用於所有品牌電腦。
python讀取txt檔案的方法:
一、檔案的開啟與建立
>>> f = open('/tmp/test.txt') >>> f.read() 'hello python!\nhello world!\n' >>> f <open file '/tmp/test.txt', mode 'r' at 0x7fb2255efc00>
二、檔案的讀取 ##步驟:開啟-- 讀取-- 關閉
>>> f = open('/tmp/test.txt') >>> f.read() 'hello python!\nhello world!\n' >>> f.close()
讀取資料是後製資料處理的必要步驟。 .txt是廣泛使用的資料檔案格式。一些.csv, .xlsx等檔案可以轉換為.txt 檔案進行讀取。我常使用的是Python自帶的I/O接口,將資料讀取進來存放在list中,然後再用numpy科學計算包將list的資料轉換為array格式,從而可以像MATLAB一樣進行科學計算。
下面是一段常用的讀取txt檔案程式碼,可以用在大多數的txt檔案讀取中
filename = 'array_reflection_2D_TM_vertical_normE_center.txt' # txt文件和当前脚本在同一目录下,所以不用写具体路径 pos = [] Efield = [] with open(filename, 'r') as file_to_read: while True: lines = file_to_read.readline() # 整行读取数据 if not lines: break pass p_tmp, E_tmp = [float(i) for i in lines.split()] # 将整行数据分割处理,如果分割符是空格,括号里就不用传入参数,如果是逗号, 则传入‘,'字符。 pos.append(p_tmp) # 添加新读取的数据 Efield.append(E_tmp) pass pos = np.array(pos) # 将数据从list类型转换为array类型。 Efield = np.array(Efield) pass
例如下面是將要讀入的txt檔案
#經過讀取後,在Enthought Canopy的variable window查看讀入的數據, 左側為pos,右側為Efield。
相關免費學習推薦:
以上是python如何讀取txt檔案的詳細內容。更多資訊請關注PHP中文網其他相關文章!