builtin_abs.py 84 B

123456
  1. # test builtin abs
  2. print(abs(False))
  3. print(abs(True))
  4. print(abs(1))
  5. print(abs(-1))