我有一个格式如下的 xml 文件:
<batch>
<type1 type="application/pdf" file="1234.pdf">
<...></...>
<...></...>
<description>Description 1</description>
<...></...>
<...></...>
</type1>
<type2 type="application/pdf" file="23456.pdf">
<...></...>
<...></...>
<description>Description 1</description>
<...></...>
<...></...>
</type2>
<type1 type="application/pdf" file="1235.pdf">
<...></...>
<...></...>
<description>Description 2</description>
<...></...>
<...></...>
</type1>
</batch>
我想在 xml 中该类型的描述列表中检索 type1、type2 的列表。列表结果是 ['{blabla.com}type1', '{blabla.com/2}type2', '{blabla.com/3}type3', '{blabla.com}type4', etc.] 我试过了:
test = ET.parse("...\\index.xml")
type_list = []
for type in test.iter():
type_list.append(type.tag)
type_list = list(set(type_list))
获取 xml 中的所有类型。但是,我怎样才能获得每种类型的所有描述呢?
我想要的结果:
type1: Description 1, Description 2
type2: Description 1, ...