response_json = json.loads(response.text)

response_json 是将一个字符串(response.text)转化为 JSON 格式的对象。 json.loads() 函数是 json 库中的反序列化函数,用于将 JSON 字符串转换为 Python 对象。

  •