gpt4 book ai didi

python - 如何在两个单词之间添加+号

转载 作者:行者123 更新时间:2023-12-04 10:20:11 26 4
gpt4 key购买 nike

我正在通过用户输入呈现 URL。如果用户输入一个包含两个单词的字符串,我想打印带有 + 的单词

例子

key = input("Enter the product :")

URL = "http://exmaple.com/"

print (URL)

User input: iPhone 11

对于上面的代码,我得到一个 URL 为“ http://exmaple.com/iphone 11”

但我想将 URL 打印为“ http://exmaple.com/iphone+11

最佳答案

尝试对 key 进行编码:

import urllib.parse
key = input("Enter the product :")
path = urllib.parse.quote_plus(key)
URL = "http://exmaple.com/{}".format(path)
print (URL)

关于python - 如何在两个单词之间添加+号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60902243/

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