mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 13:01:10 +02: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")
|