i tried to reserve xml elementree in this format
from lxml import etree
box = etree.SubElement(image, 'box',top=t,left=l,width=w,height=h)
but what i got is
<box height="511" left="1" top="1" width="510">
I noticed that the attribute are in alphabetical order so what should I do to put it in order that I did?