math.py 90 B

12345
  1. def float_gt(a, b):
  2. if 0.0001 >= abs(a -b):
  3. return False
  4. return a > b