xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
builtin_abs.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
# test builtin abs
2
3
print
(
abs
(
False
))
4
print
(
abs
(
True
))
5
print
(
abs
(
1
))
6
print
(
abs
(-
1
))
7