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