xml文件是这样的:
<?xml version="1.0" ?>
<?xml-stylesheet type="text/xsl" href="Cistrome.xsl"?>
<motifs>
<motif id="hPDI060">
..........
</motif>
</motifs>
我的python代码是这样的:
tree = ElementTree.parse(sys.argv[1])
for node in tree.findall('.//motifs'):
print("found")
但是,在我运行代码之后,found
字符串没有显示,换句话说,.//motifs
没有找到正确的标签。
有人对此有想法吗?谢谢!