Is there a standard value for (or method for obtaining) epsilon in Python? I need to compare floating point values and want to compare against the smallest possible differen
The information is available in sys.float_info, which corresponds to float.h in C99.
>>> import sys >>> sys.float_info.epsilon 2.220446049250313e-16