Python 将元组转换为字符串

我有一组这样的字符:

('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e')

如何将其转换为字符串,使其类似于:

'abcdgxre'
390076 次浏览

使用 str.join:

>>> tup = ('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e')
>>> ''.join(tup)
'abcdgxre'
>>>
>>> help(str.join)
Help on method_descriptor:


join(...)
S.join(iterable) -> str


Return a string which is the concatenation of the strings in the
iterable.  The separator between elements is S.


>>>

这里有一个使用 join 的简单方法。

''.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))

这种方法是有效的:

''.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))

它将产生:

'abcdgxre'

您还可以使用分隔符(如逗号)来生成:

'a,b,c,d,g,x,r,e'

使用:

','.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))

最简单的方法是这样使用 join:

>>> myTuple = ['h','e','l','l','o']
>>> ''.join(myTuple)
'hello'

这是因为您的分隔符本质上什么也不是,甚至不是一个空格:”。