class UpperPrintString(str): def __str__(self): return self.upper() # from collections import UserString # class UpperPrintString(UserString): # def __str__(self): # return self.upper()