xmltodict after parse only 1 root key and all other data in 2nd key

不想你离开。 提交于 2019-12-07 12:55:29

That is the correct behavior - you have the root meeting node which is the key of the ordered dictionary and everything else is the value. You can then go deeper:

for condition in my['meeting']['race']['condition']:
    print(condition["@line"])
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!