I know in most, if not all programming languages, integers, floats etc all have a maximum amount they can hold, either unsigned or signed. Eg pascal\'s int type can only hol
See the sys module:
import sys dir(sys) print sys.maxint help(sys.float_info)
and so on.