forked from Rust-related/RustPython
6 lines
91 B
Python
6 lines
91 B
Python
assert abs(-3) == 3
|
|
assert abs(7) == 7
|
|
assert abs(-3.21) == 3.21
|
|
assert abs(6.25) == 6.25
|
|
|