mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 03:55:44 -04:00
10 lines
145 B
Python
10 lines
145 B
Python
try:
|
|
1 / 0
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|
|
|
|
try:
|
|
0**-1
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|