特定の属性の存在を確認する必要があります。お気に入り:
if "blah-blah-blah" is None:
print "there is no such attribute"
else:
print "The attribute exists"
特定の属性の存在を確認する必要があります。お気に入り:
if "blah-blah-blah" is None:
print "there is no such attribute"
else:
print "The attribute exists"
Element
オブジェクトは辞書にすべての属性を持っていますattrib
。
if 'blah' not in elem.attrib:
print "there is no such attribute"