What are the Difference between cElementtree and ElementTree?

后端 未结 5 1771
感动是毒
感动是毒 2021-01-01 14:00

I know a little of dom, and would like to learn about ElementTree. Python 2.6 has a somewhat older implementation of ElementTree, but still usable. However, it looks like it

5条回答
  •  旧巷少年郎
    2021-01-01 14:02

    But now they are the same thing as of Python 3.3, in github source code cElementTree

    # cElementTree.py

    from xml.etree.ElementTree import *

    it is just for backward compatibility

提交回复
热议问题