<things>
<fruit>apple</fruit>
<hardware>mouse</hardware>
...
</things>
变成:
{'things':[{'fruit':'apple'}, {'hardware':'mouse'}]}
是否有捷径可寻?谢谢。
最佳答案
这里有一个很好的食谱:
http://code.activestate.com/recipes/570085/
另一个好人在这里:
http://code.activestate.com/recipes/522991/
关于python - 有没有办法将XML转换成字典和列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2205987/