我从JSON中提取数据,现在,但我需要在一个表格格式的结果。我错了,请帮助我
import requests
import json
url = "https://pmod.ccdevprojects.com/api/v1/budgets"
response = requests.get(url)
if response.status_code == 200:
if response.headers['content-type'] == 'application/json':
data = json.loads(response.text)
formatted_data = json.dumps(data, indent=4)
print(formatted_data)
else:
raise Exception("Response content type is not JSON")
else:
print("Error: Unable to retrieve data from API.")
我需要这样的输出
ID Category _Value Count
135 Remaining Budget Null 3
136 Remaining Budget 9216.0 3
1条答案
按热度按时间qacovj5a1#
在python中,精确的缩进是至关重要的
如果像这样布置就能用
工作输出的证据: