gpt4 book ai didi

python - 将字符串添加到 url python

转载 作者:太空宇宙 更新时间:2023-11-03 13:11:40 25 4
gpt4 key购买 nike

我想在 url 中间添加一个字符串。不知何故,我的输出看起来像这样:

http://www.Holiday.com/('Woman',)/Beach
http://www.Holiday.com/('Men',)/Beach

它应该看起来像这样:

http://www.Holiday.com/Woman/Beach
http://www.Holiday.com/Men/Beach

我使用的代码如下所示:

list = {'Woman','Men'}
url_test = 'http://www.Holiday.com/{}/Beach'
for i in zip(list):
url = url_test.format(str(i))
print(url)

最佳答案

快到了。只是不需要 zip:

items = {'Woman','Men'} # notice that this is a `set` and not a list
url_test = 'http://www.Holiday.com/{}/Beach'
for i in items:
url = url_test.format(i)
print(url)

zip 函数的目的是通过索引连接多个集合。当 zip 连接每个集合中的值时,它会将它们放在一个 tuple 中,它的 __str__ 表示正是你得到的。这里你只想迭代集合中的项目

关于python - 将字符串添加到 url python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42121538/

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