标签: python xml string list
<things> <fruit>apple</fruit> <hardware>mouse</hardware> ... </things>
把它变成:
{'things':[{'fruit':'apple'}, {'hardware':'mouse'}]}
有一种简单的方法吗?感谢。
答案 0 :(得分:1)
这里有一个很好的配方:
http://code.activestate.com/recipes/570085/
另一个好人在这里:
http://code.activestate.com/recipes/522991/