添加到没有逗号的字符串

时间:2011-11-29 17:54:48

标签: python

我想在没有任何逗号的情况下将字符串添加到字符串中。

我有一个字符串网址:http://gdata.youtube.com/feeds/api/standardfeeds/feed_str?max-results=max_result&time=

feed_str = top_rated
max_result = 5
time_str = today
web_str = "http://gdata.youtube.com/feeds/api/standardfeeds/",feed_str, "?max-results=" ,max_result,"&time=" + time_str

它打印得像这样

('http://gdata.youtube.com/feeds/api/standardfeeds/', 'top_rated', '?max-results=', '5', '&time=today')

我希望它像这样打印:

('http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?max-results=5'&time=today')

这只是一个字符串。有什么帮助吗?!

3 个答案:

答案 0 :(得分:3)

这是一个提示;您正在寻找concatenate字符串的方式。

答案 1 :(得分:2)

字符串连接是您正在寻找的内容,因此在此主题上有很多主题(String concatenation vs. string substitution in PythonConcatenation Operator + or ,,...)

答案 2 :(得分:0)

只需删除web_str上的逗号,然后将信号'+'放在他们的位置。