讀取JSON 檔 with open('test.json', 'r') as f: ## 轉成Python Dict python_dict = json.load(fp = f) print("Python Dict: ", python_dict)
確定! 回上一頁