如何调用 python API 中的描述
How to call description in python API
我想使用 python 调用关于天气 api 的描述,但是当我输入代码时它给了我这个错误,但我到处搜索都看不到它。
代码如下
des = response['weather']['description']
print("Description = ",des)
但是我收到这个错误
TypeError: 列表索引必须是整数或切片,而不是 str
使用这个可以解决问题:
des = response['weather'][0]['description'][0]
print("Description = ",des)
希望对您有所帮助!
注意:
下次将您的 JSON 代码添加到 post 以简化操作。
我想使用 python 调用关于天气 api 的描述,但是当我输入代码时它给了我这个错误,但我到处搜索都看不到它。
代码如下
des = response['weather']['description']
print("Description = ",des)
但是我收到这个错误
TypeError: 列表索引必须是整数或切片,而不是 str
使用这个可以解决问题:
des = response['weather'][0]['description'][0]
print("Description = ",des)
希望对您有所帮助!
注意:
下次将您的 JSON 代码添加到 post 以简化操作。