In Python, I can do:
>>> list = [\'a\', \'b\', \'c\'] >>> \', \'.join(list) \'a, b, c\'
Is there any easy way to do the s
I know this is a super old post, but I think what is missed is overriding __repr__, so that __repr__ = __str__, which is the accepted answer of this question marked duplicate.
__repr__
__repr__ = __str__