I have details like this on an XML file
<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>
Given these details, I want to implement a search engine that should enable the user to search for all the 'Intelligent'
people in the file.
Kindly suggest me the best way to do it in python.