gpt4 book ai didi

python - 从选定的 child 返回父标签属性

转载 作者:行者123 更新时间:2023-12-04 16:48:53 26 4
gpt4 key购买 nike

<TAGS>    
<PARENT ID="Parent Id">
<MID>
<CHILD ATTR="Child Value"

我有一段代码选择了一些对应于“子值”的 xml 的所有属性值。

我还需要“父值”来关联这两个项目,以备将来使用。

我的代码目前定位并检索子值,但我很难从父 ID 获取值。正确的语法是什么?

目前代码类似这样:

taglist = []
for parent in soup.find_all('tags'):
for each in parent.find_all('child'):
taglist.append(repr(each['attr']))

我想在这个例子中检索 PARENT ID 值,因为 child 被选中。

最佳答案

有相关find_parent() method :

child.find_parent("parent", id=True)["id"]

关于python - 从选定的 child 返回父标签属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30939873/

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