import xml.etree.ElementTree as ET
e = ET.Element('Brock',Role="Bodyguard")
print bool(e)
为什么xml.etree.ElementTree.Element
被视为False
?
我知道我可以if e is not None
检查是否存在。但我会强烈期望bool(e)
返回True
。
答案 0 :(得分:30)
事实证明,Element
个对象如果没有孩子,则被视为False
值。
我在源头找到了这个:
def __nonzero__(self):
warnings.warn(
"The behavior of this method will change in future versions. "
"Use specific 'len(elem)' or 'elem is not None' test instead.",
FutureWarning, stacklevel=2
)
return len(self._children) != 0 # emulate old behaviour, for now
即使内联评论也同意你的观点 - 这种行为是不确定的;)
答案 1 :(得分:13)
来自文档:
http://docs.python.org/2/library/xml.etree.elementtree.html#element-objects
警告:没有子元素的元素将测试为False。此行为将在以后的版本中更改。使用特定的len(elem)或elem是None测试。