按属性条件读取元素lxml
如果给定属性,使用 lxml 库如何读取元素值。 例如,如果“qtn”state=2,则所需的返回值是“Doctor Checkup”
谢谢。如果可能的话,也请给我任何相同的教程/网址
<?xml version="1.0" encoding="UTF-8"?>
<elements>
<qtn state="1">I have severe chest pain
<an state="2" res="a">Check Up</an>
</qtn>
<qtn state="2">Doctor checkup
<an state="9" res="a">Recovered</an>
<an state="3" res="b">Blood Test</an>
<an state="8" res="c">Untreatable</an>
</qtn>
Using lxml libarary how can I read element value if an attribute is given.
For example if "qtn" state=2 then return value required is "Doctor Checkup"
Thanks. If possible please also give me any tutorial/url for the same
<?xml version="1.0" encoding="UTF-8"?>
<elements>
<qtn state="1">I have severe chest pain
<an state="2" res="a">Check Up</an>
</qtn>
<qtn state="2">Doctor checkup
<an state="9" res="a">Recovered</an>
<an state="3" res="b">Blood Test</an>
<an state="8" res="c">Untreatable</an>
</qtn>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了我的答案
I got my answer