Name: Anonymous 2006-12-05 5:08
>>> class intex(int):
... __str__ = lambda self: self > 9000 and 'ITS OVER NINE THOUSAAAAAAAAAAAND!!!' or str(int(self))
...
>>> i = intex(5)
>>> print i
5
>>> i = intex(50000)
>>> print i
ITS OVER NINE THOUSAAAAAAAAAAAND!!!