我想添加東西到沒有逗號的字符串。添加到沒有逗號的字符串
我有一個字符串URL: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')
這只是一個字符串。任何幫助?!
線索已經在你的代碼中的許多線程。看看你的輸出。在字符串構造中使用變量'time_str'的方式有什麼不同? –