开发者社区> 问答> 正文

python中的lxml模块的etree允许什么?

python中的lxml模块的etree允许什么?

展开
收起
真的很搞笑 2021-12-03 21:56:11 298 0
1 条回答
写回答
取消 提交回答
  • etree允许,节点内部的子节点,认为是一个list,

      print "len(root)" 返回root节点及其子节点的个数;

      root.index(child2) 返回child2的索引值

      child = root[0] 返回child1,允许索引访问

      for child in root: 允许遍历

      root.insert(0, etree.Element('child0')) 允许插入

      root.append(etree.Element('child4')) 允许append

    2021-12-03 21:56:33
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载