I am unable to understand the below
if cell_val==10013.32945086 :
print cell_val
print str(cell_val)
print repr(cell_val)
The above code fragment is a part of for loop and the result is as shown below:
10013.3294509
10013.3294509
10013.329450859999
10013.3294509
10013.3294509
10013.329450859999
In the above cell_val got equated to 10013.32945086 but was actually holding 10013.3294509 as was printed.
Thanks