Run »
×
Change Orientation
#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.233000001))
False
True
True
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit