xmlNode.children在两个级别的孩子之后无法工作

时间:2015-11-09 11:41:45

标签: python python-2.7 xml-parsing xmlnode

示例代码

sibling = xmlNode.children
grandcihld = sibling.children
print greatgrandchild.prop('name')          // works fine
greatgrandchild = grandcihld.children
print greatgrandchild.prop('name')          // does not work

我们可以使用xmlnode.children达到什么级别?对此有任何限制吗?

0 个答案:

没有答案