math.py 90 Bytes
Newer Older
许瑞's avatar
许瑞 committed
1
2
3
4
5
def float_gt(a, b):
    if 0.0001 >= abs(a -b):
        return False
    return a > b