I am new to xml, and have problem in parsing it. I have following xml:
<bookstore>
<book>
<name>abc</name>
<price>30</price>
</book>
<book>
<name>Learning XML</name>
<price>56</price>
</book>
<book>
<name>Learning Java</name>
<price>340</price>
</book>
<book>
<name>Learning Python</name>
<price>560</price>
</book>
</bookstore>
I want to get the name of book whose price is 30. How to do that using lml python