将列表中的项连接到字符串
是否有更简单的方法将列表中的字符串项连接到单个字符串中?
我可以使用str.join()函数连接列表中的项?
str.join()
例如:这是输入['this','is','a','sentence']这是所需的输出this-is-a-sentence
['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
呼唤远方
相关分类