Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
6e0b6d02dbe238e6e3d675b51e44b2ac798ddd20
/
.
/
tests
/
float
/
float1.py
blob: bf1305c3d54f6bf672356f2eabfc34a1c8f6009a [
file
] [
log
] [
blame
]
# 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"
)