gpt4 book ai didi

python - 无法获取特定链接而不是全部链接

转载 作者:太空宇宙 更新时间:2023-11-03 14:54:06 24 4
gpt4 key购买 nike

我编写了一个脚本来解析来自站点的链接。该页面的左侧栏中有 24 个链接。我的脚本可以解析它们。但是,我只想获取前 20 个链接。此时我能做什么?

这是我现在正在尝试使用的脚本:

import requests
from lxml import html

response = requests.get("http://www.trmsites.com/shop/home.asp?siteid=90122").text
tree = html.fromstring(response)
for titles in tree.xpath("//td[@class='leftnav']/a/@href"):
print(titles)

最佳答案

tree.xpath("//td[@class='leftnav']/a/@href") 是一个列表。你可以切片它。

tree.xpath("//td[@class='leftnav']/a/@href")[:20]

关于python - 无法获取特定链接而不是全部链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45712298/

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