Python math.isclose() 方法
实例
检查两个值是否接近:
#Import math Library
import math
#compare the closeness of two values
print(math.isclose(1.233, 1.4566))
print(math.isclose(1.233, 1.233))
print(math.isclose(1.233, 1.24))
print(math.isclose(1.233, 1.233000001))
亲自试一试 »
定义和用法
math.isclose()
方法检查两个值是否接近。 如果值接近,则返回 True,否则返回 False。
此方法使用相对或绝对容差,以查看值是否接近。
提示:它使用以下公式来比较值: abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)
语法
math.isclose(a, b, rel_tol, abs_tol)
参数值
参数 | 描述 |
---|---|
a | 必需。 第一个检查接近度的值 |
b | 必需。检查接近度的第二个值 |
rel_tol = value | 可选。 相对容差。 它是值 a 和 b 之间允许的最大差异。 默认值为 1e-09 |
abs_tol = value | 可选。 最小绝对公差。 它用于比较接近 0 的值。value必须至少为 0 |
技术细节
返回值: | bool 值。 True 如果值接近,否则 False |
---|---|
Python 版本: | 3.5 |
更多实例
实例
使用绝对公差:
#Import math Library
import math
#compare the closeness of two
values
print(math.isclose(8.005, 8.450, abs_tol = 0.4))
print(math.isclose(8.005, 8.450, abs_tol = 0.5))
亲自试一试 »