In Python, I can do:
>>> list = [\'a\', \'b\', \'c\'] >>> \', \'.join(list) \'a, b, c\'
Is there any easy way to do the s
The built-in string constructor will automatically call obj.__str__:
obj.__str__
''.join(map(str,list))