gpt4 book ai didi

python - 读取 URLLIB 中从不同起始字符开始的 URL

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

我通过 python 打开一个 URL 并打印字符,但是前大约 1000 个字符是无用的,我不希望它们出现。如何开始从一个数字打印到另一个预定义数字?

我尝试查找解决方案,但没有任何说明从不同的预定义数字开始。

from urllib.request import urlopen

link = "https://www.abc.net.au/"

#dummy URL. Its on the internet, but dont want to use the real one for privacy

f = urlopen(link)
print(f.readline(1000:2000))

最佳答案

您可以简单地对返回的字符串进行索引:

from urllib.request import urlopen

link = "https://www.abc.net.au/"

f = urlopen(link)
print(f.read()[1000:2000])

关于python - 读取 URLLIB 中从不同起始字符开始的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56006948/

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