我在 XML 文件中有这样的详细信息
<note>
<id>51</id>
<Name>Jani</Name>
<city>Frankfurt</city>
<IQ>Intelligent</IQ>
</note>
<note>
<id>71</id>
<Name>Peter</Name>
<city>Paris</city>
<IQ>Average</IQ>
</note>
<note>
<id>81</id>
<Name>Asho</Name>
<city>Paris</city>
<IQ>Intelligent</IQ>
</note>
鉴于这些细节,我想实现一个搜索引擎,让用户能够搜索'Intelligent'
文件中的所有人。
请建议我在 python 中做到这一点的最佳方法。