我正在使用这样的 python 请求查询 API...url = "www.example.com"response = requests.request("POST", url)response--------[ { "id": "485744", "descript": "firstitem", }, { "id": "635456", "descript": "seconditem", }, { "id": "765554", "descript": "thirditem", },]我正在尝试像这样访问响应中的第一项...response = response.jsonprint(response[0])但我收到错误...TypeError: 'method' object is not subscriptable我哪里错了?
2 回答
繁星coding
TA贡献1797条经验 获得超4个赞
你没有正确地称呼它:response.json()
替代方法:
import json #import this on the top
response = json.loads(response) #You need to load the data into JSON
还:每个末尾的附加逗号 (,) "descript":
"firstitem", "seconditem","thirditem"不是必需的,可能会出错。
添加回答
举报
0/150
提交
取消