I read something here
I was wondering how is python able to handle such large values. During computation where are they stored? After all, the CPU has to compute the values, so how can a CPU handle values larger than the sys.maxint? Why is that languages that support fixed length values unable to handle such larger numbers? What is python's trick?
Note: I am confused how is the CPU able to handle the computation of larger values and where these values are stored.