Python将元组转换为字符串


98

我有一个这样的字符元组:

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

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

'abcdgxre'

1
也尝试一下reduce(add, ('a', 'b', 'c', 'd'))
Grijesh Chauhan

是什么add在这个exmple @GrijeshChauhan?
史蒂夫

@Steve您需要addoperator模块导入功能。顺便说一句,"".join这里更适合,但是如果您想添加不同类型的对象,则可以使用add检查此工作示例
Grijesh Chauhan 2014年

Answers:


165

用途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.

>>>

23
如果元组包含数字,则不起作用。尝试tup =(3,无,无,无,无,1406836313736)
拉吉

56
对于数字,您可以尝试以下操作:''.join(map(str, tup))
Mo Beigi 2015年

27

这是使用联接的一种简单方法。

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

13

这有效:

''.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'))

3

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

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

之所以有效,是因为您的定界符实际上什么都没有,甚至没有空格:”。


4
您的“ myTuple”列表是顺便说一句
bariod
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.