with open('c:\users\10224298\desktop\桌面檔案') as file_object:#with在不需要訪問檔案後將其關閉。
contents = file_object.read()
print(contents.rstrip()) rstrip可以刪除每行末尾的換行符
使用jason模組儲存資訊:
json可以在python之間分享資料,並可以與其他程式語言一起分享。
json.dump()接受兩個引數,要儲存的資料和用於儲存資料的檔案物件。
import json
numbers = [2,3,4,5]
filename="numbers.json"
with open(filename,"w") as f_obj:
json.dump(numbers,f_obj)
json.load() 是指將列表匯入記憶體中
import json
filename="numers.json"
with open(filename) as f_obl:
numbers = json.load(f_obj)
print (numbers)
Python 讀取json檔案
建立json檔案 1 8 讀取json檔案 1 import json 2 3 def loadfont 4 f open settings.json encoding utf 8 設定以utf 8解碼模式讀取檔案,encoding引數必須設定,否則預設以gbk模式讀取檔案,當檔案中包含中文時,會報...
python讀取json檔案
比如下圖json資料,場景需要讀取出 wxid 這項資料,然後傳給後面的函式去使用 具體的指令碼為 import json f open d 1024.json encoding utf 8 開啟 product.json 的json檔案 res f.read 讀檔案print json.loads...
讀取json檔案 python入門
用以記錄學習中的點點滴滴。json檔案內容 資料結構 with open r d train.json r as f with open d train.json r as f 或者 with open d train.json r as f temp json.loads f.readline j...