现在我的脚本无法运行,因为我的列表中的某些项目不包含属性img
。
for container in containers:
brand = container.div.div.a.img["title"]
如果属性if-statement
不存在,我如何编写img
我的脚本将返回默认值并继续运行具有属性img
的项目的脚本。
答案 0 :(得分:0)
try/except
会做的事情
for container in containers:
try:
brand = container.div.div.a.img["title"]
except AttributeError:
brand = 'default value'