En Python, puedo hacer:
>>> list = ['a', 'b', 'c']
>>> ', '.join(list)
'a, b, c'
¿Hay alguna manera fácil de hacer lo mismo cuando tengo una lista de objetos?
>>> class Obj:
... def __str__(self):
... return 'name'
...
>>> list = [Obj(), Obj(), Obj()]
>>> ', '.join(list)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: sequence item 0: expected string, instance found
¿O tengo que recurrir a un bucle for?