Quick actions

cmd+k|ctrl+k

Navigation

Languages

PythonOverflowExample

Snippet info

Language

Python

Visibility

public

Author

masterhun

Created

2023-08-09T17:10:02.068829Z

Updated

2023-08-09T17:10:10.882134Z



"""

An example of overflow in Python

Source: https://www.pylenin.com/blogs/overflow-error-exception/

"""


j = 5.0

for i in range(1, 1000):
    j = j**i
    print(j)


INFO