有一个xml.etree.ElementTree模块的功能吗? NOT:
if node.find(tag)!=None:
#code
pass
答案 0 :(得分:1)
这正是您所呈现的内容。 find()
是工作的工具:
查找匹配匹配的第一个子元素。 match可以是标签名称或路径。 返回元素实例或
None
。
只是,为了遵循最佳做法,在与is
比较时使用None
:
if node.find(tag) is not None:
# code