mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 13:10:21 +01:00
"1/0" is sacred idiom, the shortest way to break program execution (sys.exit() is too long).
10 lines
146 B
Python
10 lines
146 B
Python
try:
|
|
1 / 0
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|
|
|
|
try:
|
|
1 // 0
|
|
except ZeroDivisionError:
|
|
print("ZeroDivisionError")
|