Hello,
Im working on a programming problem where i need to handle a number involving 100000 digits . Can python handle numbers this big ?
Thank You
|
|
|||||||||
|
|
|
As other answers indicated, Python does support integer numbers bounded only by the amount of memory available. If you want even faster support for them, try gmpy (as gmpy's author and current co-maintainer I'm of course a little biased here;-):
Typically, arithmetic is not the bottleneck for working with such numbers (although
As you see, even in Finally, an intermediate case:
As you see, multiplying two huge numbers in native Python code can be almost 1000 times slower than the simple addition, while with |
||
|
|
|
|
Yes; Python 2.x has two types of integers, int of limited size and long of unlimited size. However all calculations will automatically convert to long if needed. Handling big numbers works fine, but one of the slower things will be if you try to print the 100000 digits to output, or even try to create a string from it. If you need arbitrary decimal fixed-point precision as well, there is the decimal module. |
|||
|
|
|
|
Sure it can:
|
||
|
|
|
|
It seems to work fine:
According to http://docs.python.org/library/stdtypes.html, "Long integers have unlimited precision", which probably means that their size is not limited. |
||
|
|
|
|
As already pointed out, Python can handle numbers as big as your memory will allow. I would just like to add that as the numbers grow bigger, the cost of all operations on the increases. This is not just for printing/converting to string (although that's the slowest), adding two large numbers (larger that what your hardware can natively handle) are is no longer O(1). I'm just mentioning this to point out that although Python neatly hides the details of working with big numbers, you still have to keep in mind that these big numbers operations are not always like those on ordinary ints. |
||
|
|