No Python, eu posso fazer: >>> list = ['a', 'b', 'c'] >>> ', '.join(list) 'a, b, c' Existe alguma maneira fácil de fazer o mesmo quando tenho uma lista de objetos? >>> class Obj: ... def __str__(self): ... return 'name' ... >>> list = [Obj(), Obj(),...