import json import pprint path_to_file = "data.json" with open(path_to_file) as file: data = json.load(file) pprint.pprint(data) # 1st Way.
確定! 回上一頁