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