Python 讀取json檔案

2021-08-21 19:41:11 字數 509 閱讀 1158

建立json檔案:

1 

8 }

讀取json檔案:

1 import json

2 3 def loadfont():

4 f = open("settings.json", encoding='utf-8') //設定以utf-8解碼模式讀取檔案,encoding引數必須設定,否則預設以gbk模式讀取檔案,當檔案中包含中文時,會報錯

5 setting = json.load(f)

6 family = setting['basesettings']['size'] //注意多重結構的讀取語法

7 size = setting['fontsize']

8 return family

9 10 t = loadfont()

11 12 print(t)

結果:2

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

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

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