File size: 177 Bytes
240e0a0
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
def float_gt(a, b):
    if 0.0001 >= abs(a -b):
        return False
    return a > b
    
def float_equal(a, b):
    if 0.0001 >= abs(a-b):
        return True
    return False