Ejemplo n.º 1
0
 def __str__(self):
     """Returns the string representation of self."""
     return AbstractCollection.__str__(self)
Ejemplo n.º 2
0
 def __str__(self):
     """Returns the string representation of self."""
     return AbstractCollection.__str__(self)
Ejemplo n.º 3
0
 def __str__(self):
     """Returns the string rep of the bag."""
     result = AbstractCollection.__str__(self)
     return "{" + result[1:-1] + "}"