gpt4 book ai didi

python - xpath with lxml for Python获取数据

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

<th><span class="sic_edu_series_popup {keyword : 'EPS_STOCK'}">EPS</span>
(SGD) <sup class="sic_legend">a
, j

</sup></th>
<td><strong>1.89766</strong></td>
<th><span class="sic_edu_series_popup {keyword : 'TRAILING_EPS_STOCK'}">Trailing EPS</span>
(SGD) <sup class="sic_legend">e</sup></th>
<td><strong>1.87198</strong></td>
<th><span class="sic_edu_series_popup {keyword : 'NAV_STOCK'}">NAV</span>
(SGD) <sup class="sic_legend">b</sup></th>
<td><strong>18.5449</strong></td>
</tr>

我正在尝试提取“Trailing EPS”的数据以获取数据“1.87198”。这种格式的数据有很多不同的名称,如EPS、ROE等

tree.xpath('//th[contains(normalize-space(span), "EPS")]/sup[@class = "sic_legend"]/td/text()')

我什么也得不到。

最佳答案

td 元素不是 sup 元素的子元素。使用 thtd兄弟这一事实:

//th[contains(span, "EPS")]/following-sibling::td/strong/text()

关于python - xpath with lxml for Python获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40550194/

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