공부/Python

    Arbitrary-Precision

    Pydata Stack을 사용하지 않는 Python의 경우 OverFlow가 발생하지 않을까. In computer science, arbitrary-precision arithmetic, also called bignum arithmetic, multiple precision arithmetic, or sometimes infinite-precision arithmetic, indicates that calculations are performed on numbers whose digits of precision are limited only by the available memory of the host system. (Wikipedia) Python2의 경우 int와 long이 있었다. 하지만 Py..