DEV Community

Oliver Bennet
Oliver Bennet

Posted on

Handling Large Integers in Python

Do you know that in Python, we can perform calculations with very large integers like 888**888 without any overflow errors because python automatically uses a "big integer" type for relatively large numbers.

Python large calculation

Top comments (1)

Collapse
 
pgradot profile image
Pierre Gradot

Yes.