我想从选项中的文本键中获取数据我被困了一个小时谁能帮我

需要从文本键获取数据一直在尝试它不起作用并给出错误:list indices must be integers or slice, not str


resp = json.loads(str(result)) 

resp['choices']['text] 

JSON:


{

  "choices": [

    {

      "finason": "stop",

      "index": 0,

      "logprobs": null,

      "text": "hihihiii"

    }

  ],

  "created": 1595021770,

  "id": "cmp pvu4OUC5Qbh4C",

  "model": " 2020-05-03",

  "object": "tex tion"

}


拉莫斯之舞
浏览 67回答 1
1回答

DIEA

resp['choices']是一个列表,所以你需要整数索引来访问它的元素:resp = json.loads(str(result))resp['choices'][0]['text'] 
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python