12

特定の属性の存在を確認する必要があります。お気に入り:

if "blah-blah-blah" is None:
    print "there is no such attribute"
else:
    print "The attribute exists"
4

1 に答える 1

31

Elementオブジェクトは辞書にすべての属性を持っていますattrib

if 'blah' not in elem.attrib:
   print "there is no such attribute"
于 2012-06-21T15:30:00.230 に答える