mirror of
https://github.com/micropython/micropython.git
synced 2024-07-26 18:26:56 +01:00
10 lines
147 B
Python
10 lines
147 B
Python
try:
|
|
1 / 0
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|
|
|
|
try:
|
|
0 ** -1
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|