summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/int_divzero.py
blob: aa38eee1d74b74a40d9bbb669bda282dffcf63be (plain) (blame)
1
2
3
4
5
6
7
8
9
try:
    1 // 0
except ZeroDivisionError:
    print("ZeroDivisionError")

try:
    1 % 0
except ZeroDivisionError:
    print("ZeroDivisionError")