python讀取json檔案

2022-06-20 16:03:17 字數 580 閱讀 1872

比如下圖json資料,場景需要讀取出

wxid

這項資料,然後傳給後面的函式去使用

具體的指令碼為

import

json

f =open('

d:\\1024.json

',encoding='

utf-8

') #

開啟『product.json』的json檔案

res=f.read() #

讀檔案print(json.loads(res))#

把json串變成python的資料型別:字典

1、引入json庫

2、開啟json檔案

3、讀取json檔案

4、列印出來的結果

取資料又是另一方面的技術活了,另外乙個案例裡面講解

本教程參考

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模式讀取檔案,當檔案中包含中文時,會報...

讀取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模組儲...