Python if if not found语句

时间:2018-02-24 11:30:38

标签: python python-3.x

现在我的脚本无法运行,因为我的列表中的某些项目不包含属性img

for container in containers:
    brand = container.div.div.a.img["title"]

如果属性if-statement不存在,我如何编写img我的脚本将返回默认值并继续运行具有属性img的项目的脚本。

1 个答案:

答案 0 :(得分:0)

try/except会做的事情

for container in containers:
    try:
        brand = container.div.div.a.img["title"]
    except AttributeError:
        brand = 'default value'