This website requires JavaScript.
Explore
Help
Sign In
m5
/
Core2forAWS-MicroPython
Watch
0
Star
0
Fork
0
You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced
2026-05-20 10:30:31 -07:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
85858e72dfdc3e941c2e620e94de05ad663138b1
Core2forAWS-MicroPython
/
tests
/
basics
/
int_divzero.py
T
10 lines
146 B
Python
Raw
Normal View
History
Unescape
Escape
py: Properly implement divide-by-zero handling.
2014-03-31 02:20:00 +03:00
try
:
1
/
/
0
except
ZeroDivisionError
:
print
(
"
ZeroDivisionError
"
)
py: Catch all cases of integer (big and small) division by zero.
2015-10-01 22:48:48 +01:00
try
:
1
%
0
except
ZeroDivisionError
:
print
(
"
ZeroDivisionError
"
)
Reference in New Issue
Copy Permalink