mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
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
|
|
|