是否有將列表中的字符串項連接成單個字符串的更簡單的方法?將列表中的項連接到字符串
我可以使用str.join()
函數來連接列表中的項目嗎?
E.g.這是輸入['this','is','a','sentence']
,這是所需的輸出this-is-a-sentence
sentence = ['this','is','a','sentence']
sent_str = ""
for i in sentence:
sent_str += str(i) + "-"
sent_str = sent_str[:-1]
print sent_str
''''join(句子)' – aland