讀取json檔案 python入門

2021-08-10 09:17:17 字數 783 閱讀 1521

用以記錄學習中的點點滴滴。

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())           #json.loads()讀取string   json.load()讀取檔案 將儲存的json結構轉化為資料結構

data=temp[0]                 #讀取第0個資料,記data

print(data['items'])        #讀取data中的items內容

執行結果:

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...

python檔案讀取 ,json檔案的儲存

with open c users 10224298 desktop 桌面檔案 as file object with在不需要訪問檔案後將其關閉。contents file object.read print contents.rstrip rstrip可以刪除每行末尾的換行符 使用jason模組儲...