Python convert tuple to string

后端 未结 4 535
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-27 15:01

I have a tuple of characters like such:

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

How do I convert it to a string so that it

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-27 15:51

    Use 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.
    
    >>>
    

提交回复
热议问题