You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
177 B
Python
9 lines
177 B
Python
4 weeks ago
|
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
|