我在 python 中编写了一些代码,我遇到了一个问题,例如,当我有一个句子“这是我的第一个 python 程序”时,在使用该split
函数后,我得到如下结果:
['this', 'is', 'my', 'very', 'first', 'python', 'program']
['this', 'is', 'my', 'very', 'first', 'python program']
['this', 'is', 'my', 'very', 'first python program']
['this', 'is', 'my', 'very first python program']
['this', 'is', 'my very first python program']
['this', 'is my very first python program']
['this is my very first python program']
现在我想将每个用 + 号分隔的单词传递到一个 url 中。
我想为每个循环使用一个,但我的问题是它应该自动替换它,如上所述。
例如, 的结果"python program"
应该是"python+program"
。
那么谁能告诉我如何在python中解决这个问题?