Python 從檔案中讀取資料

2021-08-08 20:00:52 字數 473 閱讀 9773

學習python時,發現在使用with open('pi_digits.text') as file_object時,使用相對路徑,總是出現notfoundfileerror的錯誤,後來想到使用絕對路徑。書中提到的在linux環境中路徑使用的是斜槓(/),在windows環境中使用的是反斜槓(\)。而經過實踐,發現只要在檔案前面使用的斜槓即可,其他的地方,斜槓與反斜槓都是可以的。

本人在編寫**時,使用的notepad++,至於原因,暫時還不太清楚,希望路過的大神可以指點一二。

try:

file_path = 'g:\python_work/1.txt'

with open(file_path) as file_object:

contents = file_object.read()

print(contents)

except:

print('異常執行')

Python從檔案中讀取資料

編寫了乙個名為learning python.txt的檔案,內容如下 root centos7 tmp cat learning python.txt in python you can code in python you can learn object in python you can le...

Python從檔案中讀取資料(2)

一 讀取檔案中各行的內容並儲存到乙個列表中 繼續用resource.txt 舉例 resource.txt my name is joker,i am 18years old,how about you?test.py 1 file name resource.txt 2 3with open fi...

Python從txt檔案中逐行讀取資料

coding utf 8 import os for line in open samples label val.txt print line line,end 後面跟 end 將忽略換行符 line samples images 3 3 5460e99f0ca9c410960571e02a0d2...