gpt4 book ai didi

python - 在 Elementtree 中找不到元素

转载 作者:太空宇宙 更新时间:2023-11-03 21:12:00 25 4
gpt4 key购买 nike

res = requests.get("https://pubchem.ncbi.nlm.nih.gov/rest/pug/compound/name/" + "Water" + "/cids/XML")
tree = ET.fromstring(res.content)
CID = tree.find("CID").text

res 中存在的 XML 是:

<IdentifierList xmlns="http://pubchem.ncbi.nlm.nih.gov/pug_rest" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:schemaLocation="http://pubchem.ncbi.nlm.nih.gov/pug_rest https://pubchem.ncbi.nlm.nih.gov/pug_rest/pug_rest.xsd">
<CID>962</CID>
</IdentifierList>

我想检索的是 962

tree.getchildren()结果 [<Element '{http://pubchem.ncbi.nlm.nih.gov/pug_rest}CID' at 0x0000024606B9A098>] 。为什么会出现这种情况?我需要做什么来解决这个问题?我知道正则表达式很容易得到我需要的东西,但我想用 ET 来执行此操作(当然如果可能的话)。

最佳答案

你可以试试这个

res = requests.get("https://pubchem.ncbi.nlm.nih.gov/rest/pug/compound/name/" + "Water" + "/cids/XML")
tree = ET.fromstring(res.content)
CID = tree[0].text

关于python - 在 Elementtree 中找不到元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54999299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com