math — Mathematical functions — Python 3.10.6 documentation
https://docs.python.org/3/library/math.html
Aug 09, 2022 · math.isclose (a, b, *, rel_tol = 1e-09, abs_tol = 0.0) ¶ Return True if the values a and b are close to each other and False otherwise.. Whether or not two values are considered close is determined according to given absolute and relative tolerances. rel_tol is the relative tolerance – it is the maximum allowed difference between a and b, relative to the larger …
DA: 85 PA: 93 MOZ Rank: 22