将列表中的项连接到字符串

问题描述 投票:388回答:5

有没有更简单的方法将列表中的字符串项连接成一个字符串?

我可以使用str.join()函数加入列表中的项目吗?

例如。这是输入['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
python string list join concatenation
5个回答
753
投票

使用join

>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'

94
投票

将python列表转换为字符串的更通用的方法是:

>>> my_lst = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> my_lst_str = ''.join(map(str, my_lst))
>>> print(my_lst_str)
'12345678910'

30
投票

对初学者来说,了解why join is a string method 非常有用

一开始很奇怪,但在此之后非常有用。

join的结果总是一个字符串,但是要连接的对象可以是多种类型(生成器,列表,元组等)

.join更快,因为它只分配一次内存。比经典连接更好。 extended explanation

一旦你学会了它,它就会非常舒服,你可以做这样的技巧来添加括号。

  >>> ",".join("12345").join(("(",")"))
  '(1,2,3,4,5)'

  >>> lista=["(",")"]
  >>> ",".join("12345").join(lista)
  '(1,2,3,4,5)'

13
投票

虽然@Burhan Khalid's answer很好,但我认为这样可以理解:

from str import join

sentence = ['this','is','a','sentence']

join(sentence, "-") 

join()的第二个参数是可选的,默认为“”。

编辑:此功能已在Python 3中删除


1
投票

我们还可以使用python内置的reduce功能: -

来自functools import reduce

句子= ['this','是','a','句子']

out_str = str(reduce(lambda x,y:x +“ - ”+ y,sentence))

打印(out_str)

我希望这有帮助 :)

© www.soinside.com 2019 - 2024. All rights reserved.