Explore
Connect
Documentation
Snippets
Log in
Sign up
1
2
3
4
5
print(
10
^
100
)
# no overflow
print(
10
^
500
)
# overflow, marked by Inf value
## 1e+100
## Inf
Enter to Rename, Shift+Enter to Preview
Run