class Bank(object):
  def __str__(self):
    """Return the string rep of the entire bank."""
    #get a sorted copy of the list
    #using default SavingAccount comparison      Â
    pTemp =sorted(self._accounts)
    return '\n'.join(map(str, pTemp))