Frequently used
Function | Description | Documentation | Example |
---|---|---|---|
math.isclose(a, b, ...) | Return True if the values a and b are close to each other and False otherwise.The default relative tolerance is 1e-09, which assures that the two values are the same within about 9 decimal digits. rel_tol must be nonnegative and less than 1.0. | docs.python.org | |