这是我第一次使用python,我仍然在学习python。我有问题,当我试图使用索引。索引显示错误“IndexError:列表索引超出范围”。但我想通过或为它创造条件。例如:
links = "http://www.website_name.com/"
content_ig = BeautifulSoup(send.content, 'html.parser')
script = content_ig.find_all("script")[3].get_text()
script = script.split('openData = ')[1][:-1]
if not script:
#This condition i create to next if the value is out of index
else:
print("Works")
我的意思是当索引超出范围时,我想在另一个值旁边创建条件,而不仅仅是停止并显示错误“IndexError:列表索引超出范围”。
1条答案
按热度按时间fzsnzjdm1#
为了解决你的问题,你可以将你的代码行 Package 在一个
try-except
大括号内:快速演示: