summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/float1.py
blob: bf1305c3d54f6bf672356f2eabfc34a1c8f6009a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# basic float
x = 1 / 2
print(x)

print(1.0 // 2)
print(2.0 // 2)

try:
    1.0 / 0
except ZeroDivisionError:
    print("ZeroDivisionError")

try:
    1.0 // 0
except ZeroDivisionError:
    print("ZeroDivisionError")