import json # 開啟JSON 檔案 with open("data.json") as f: # 讀取JSON 檔案 p = json.load(f) # 查看整個JSON 資料解析後的結果 print("p =", p) # 取得name 的值 ...
確定! 回上一頁