第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Python從請(qǐng)求響應(yīng)中獲取第一項(xiàng)

Python從請(qǐng)求響應(yīng)中獲取第一項(xiàng)

慕蓋茨4494581 2023-03-08 16:27:08
我正在使用這樣的 python 請(qǐng)求查詢 API...url = "www.example.com"response = requests.request("POST", url)response--------[  {    "id": "485744",    "descript": "firstitem",  },  {    "id": "635456",    "descript": "seconditem",  },  {    "id": "765554",    "descript": "thirditem",  },]我正在嘗試像這樣訪問響應(yīng)中的第一項(xiàng)...response = response.jsonprint(response[0])但我收到錯(cuò)誤...TypeError: 'method' object is not subscriptable我哪里錯(cuò)了?
查看完整描述

2 回答

?
開心每一天1111

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超13個(gè)贊

json是類的方法Response而不是對(duì)象的屬性。要獲取 json 數(shù)據(jù),請(qǐng)使用:

response = response.json()


查看完整回答
反對(duì) 回復(fù) 2023-03-08
?
繁星coding

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超4個(gè)贊

你沒有正確地稱呼它:response.json()


替代方法:


import json #import this on the top

response = json.loads(response) #You need to load the data into JSON

還:每個(gè)末尾的附加逗號(hào) (,) "descript":


"firstitem", "seconditem","thirditem"不是必需的,可能會(huì)出錯(cuò)。


查看完整回答
反對(duì) 回復(fù) 2023-03-08
  • 2 回答
  • 0 關(guān)注
  • 144 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)