mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 20:15:33 -04:00
10 lines
146 B
Python
10 lines
146 B
Python
try:
|
|
1 // 0
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|
|
|
|
try:
|
|
1 % 0
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|