summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/int-divzero.py
blob: d1fc579321d3d9e8db4c540f4177087c2f569438 (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")