In article <[email protected]>,
 Nac Temha <[email protected]> wrote:

> Thanks for reply. I wonder how quickly calculate big numbers. Can you
> explain me as theoretical? Because this numbers overflow size of integer
> and double.

Now, that's a good question.  The answer is that Python implements 
multiple-precision arithmetic.  This is an awesome feature, as it means 
you never have to worry about integer overflow again.  A good 
introduction to the subject can be found at

http://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to