def catenateLoop(strs):
outputString = ""
for strings in strs:
outputString = outputString + strings
print outputString
我正在使用上面的代碼連接到使用for循環的單個字符串的列表中的字符串。沒有代碼輸出正確的連接,但由於某種原因,代碼沒有作爲字符串輸出。例如,catenateLoop(['one','two','three'])正在打印onetwothree而不是'onetwothree'。我嘗試了幾種不同的格式,但我似乎無法弄清楚爲什麼它不會打印在字符串中。有任何想法嗎?For循環python將不會打印輸出作爲字符串
打印字符串不包括引號。它仍然是一個字符串。 – 2014-10-29 21:00:08
如果你想看到字符串周圍的引號,請在兩邊添加引號字符串:'print''「+ outputString +」'「' – 2014-10-29 21:00:50