我正在尝试检查我返回的数组是否为空。
我尝试的代码是:
if (r.json()['negative'][0]['topic']) == "":
我得到的错误是索引超出范围错误。
我知道这意味着数组中没有任何内容,但是我的代码崩溃了,因为它没有返回任何内容。
任何想法?
答案 0 :(得分:3)
您正在尝试从空数组r.json()['negative']访问第一个元素,这会导致您的代码失败。
检查“否定”键是否为空阵列,然后检查您的状况。
if (r.json()['negative']:
if (r.json()['negative'][0]['topic']) == "":
答案 1 :(得分:2)
不要把它全部放在一行,否则你就无法知道到底发生了什么。
data = r.json()
if 'negative' not in data:
print('negative key is missing')
elif len(data['negative']) == 0:
print('no items in the negative list')
elif 'topic' not in data['negative'][0]:
print('topic is missing')
elif data['negative'][0]['topic'] == '':
print('topic is empty')
else:
# now you can access it safely
print(data['negative'][0]['topic'])
答案 2 :(得分:1)
因为您要深入到字典列表中的一组字典中 - 您几乎肯定需要按照其他人的建议检查每个容器的长度(或检查密钥是否在字典中),或者一些人认为它只是捕获异常并继续前进:
try:
if (r.json()['negative'][0]['topic']) == "":
# do stuff
except IndexError:
# do other stuff
这是常用的It is better to ask forgiveness than to ask permission
原则。