标签: python python-3.x
我正在使用xml.etree.ElementTree.Element(tag, attrib={}, **extra)代码 Element('title', text= 'KCTV')要创建元素<title>KCTV</title>,但结果是<title text="KCTV"/>,那有什么不对?
Element('title', text= 'KCTV')
<title>KCTV</title>
<title text="KCTV"/>
使用xml.etree.ElementTree.Element(tag,attrib = {},** extra)无法使用一行代码设置text属性?
text
额外的论点是做什么的?