我有一个这样的示例 xml 文件:
<root>
She
<opt>went</opt>
<opt>didn't go</opt>
to school.
</root>
我想创建一个名为 of 的子元素,并将 的所有内容放入其中。那是,
<root>
<sentence>
She
<opt>went</opt>
<opt>didn't go</opt>
to school.
</sentence>
</root>
我知道用 ElementTree 或 lxml 制作子元素很热门,但我不知道如何从“She”到“shools”进行选择。一次全部。
import lxml.etree as ET
ET.SubElement(root, 'sentence')
I'm lost...