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
here is an easy way to use join.
''.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))