Python将元组转换为string
我有一个像这样的字符的元组:
('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e')
如何将其转换为string,使其如下所示:
'abcdgxre'
使用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(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))