我有一个xml
格式的文件:
<NewDataSet>
<Root>
<Phonemic>and</Phonemic>
<Phonetic>nd</Phonetic>
<Description/>
<Start>0</Start>
<End>8262</End>
</Root>
<Root>
<Phonemic>comfortable</Phonemic>
<Phonetic>comfetebl</Phonetic>
<Description>adj</Description>
<Start>61404</Start>
<End>72624</End>
</Root>
</NewDataSet>
我需要对其进行处理,例如,当用户输入 时nd
,程序将其与<Phonetic>
标签匹配并and
从<Phonemic>
部件返回。我想也许如果我可以将 xml 文件转换为字典,我将能够遍历数据并在需要时查找信息。
我搜索并找到了用于相同目的的xmltodict :
import xmltodict
with open(r'path\to\1.xml', encoding='utf-8', errors='ignore') as fd:
obj = xmltodict.parse(fd.read())
运行它给了我一个ordered dict
:
>>> obj
OrderedDict([('NewDataSet', OrderedDict([('Root', [OrderedDict([('Phonemic', 'and'), ('Phonetic', 'nd'), ('Description', None), ('Start', '0'), ('End', '8262')]), OrderedDict([('Phonemic', 'comfortable'), ('Phonetic', 'comfetebl'), ('Description', 'adj'), ('Start', '61404'), ('End', '72624')])])]))])
现在不幸的是,这并没有让事情变得更简单,我不确定如何使用新的数据结构来实现程序。例如要访问nd
我必须写:
obj['NewDataSet']['Root'][0]['Phonetic']
这非常复杂。我试图把它变成一个普通的字典,dict()
但是因为它是嵌套的,所以内层保持有序,我的数据很大。