gpt4 book ai didi

python - 打开网站上的特定页面

转载 作者:行者123 更新时间:2023-12-01 05:31:08 27 4
gpt4 key购买 nike

使用 webbrowser 模块,我想打开 last.fm 上的特定页面。它从文本文件中选取一行然后打印它。我希望它在末尾添加该行:

webbrowser.open('http://www.last.fm/music/')

例如,random.choice 选择示例艺术家。我希望将示例艺术家正确添加到网址末尾。如有任何帮助,我们将不胜感激。

最佳答案

使用urlparse.urljoin函数构建完整的目标URL:

import urlparse
import webbrowser

artist_name = 'virt'
url = urlparse.urljoin('http://www.last.fm/music/', artist_name)

# Will open http://www.last.fm/music/virt in your browser.
webbrowser.open(url)

关于python - 打开网站上的特定页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20277159/

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