gpt4 book ai didi

python - TypeError : 'NoneType' object is not iterable issue. 我如何设法绕过空语句?

转载 作者:行者123 更新时间:2023-12-01 08:05:36 24 4
gpt4 key购买 nike

我试图找到发送推文的位置,有些人显然没有在他们的推文上设置位置,所以我想知道如何绕过“TypeError:‘NoneType’对象不可迭代”并显示“未识别”答案代替它吗?

我使用的代码是L `import json

with open('tweets7.txt')as json_data:
data = json.load(json_data)
for r in data['results']:
for b in r['place']:
print (r['place']['full_name'])
break
print r['text']

`

最佳答案

在这种情况下你可以使用 try/catch :)

with open('tweets7.txt')as json_data:
data = json.load(json_data)
for r in data['results']:
try:
for b in r['place']:
print (r['place']['full_name'])

except TypeError:
print("location not identified")

print r['text']

关于python - TypeError : 'NoneType' object is not iterable issue. 我如何设法绕过空语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55551014/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com