运行 ❯
获取您的
自己的 Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
#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))
False
True
False
True