创建元素:
ele = doc.createElement("ele")
ele.attributes['var']= 'yes'
ele.attributes['ret']= 'no'
main.appendChild(ele)
但结果有混合属性(可能是字母):
<function ret="no" var="yes"/>
有没有办法如何在minidom中保留属性的创建顺序?
答案 0 :(得分:2)