我对 python 比较陌生,并且在使用 xml.dom 遍历节点子节点时遇到了一些麻烦。我想做这个:
dom = parse("synth_options.xml")
root = dom.documentElement
child_nodes = root.childNode
for index, node in child_nodes:
#do stuff with index and node
但是,我收到此错误:
Traceback (most recent call last):
File "synth.py", line 142, in <module>
for index, node in child_nodes:
TypeError: iteration over non-sequence
奇怪的是,这有效:
for node in child_nodes:
#do stuff with index and node
如果有帮助,我可以发布更多代码,但我认为没有其他相关内容。提前致谢。