在 Python 中加載 JSON 文件可以使用 json
模塊。下面是一個示例代碼:
import json
# 讀取 JSON 文件
with open('data.json', 'r') as file:
data = json.load(file)
# 輸出數據
print(data)
在上面的代碼中,json.load()
函數用于加載 JSON 文件并將其轉換為 Python 對象。你可以通過 open()
函數打開 JSON 文件,使用 json.load()
函數加載數據,并對數據進行操作。