t is array of two float64
numbers.
On typing t
in Ipython 2.7, it is giving following output:
array([ 60.211127, 71.08120185])
print t
gives
[ 60.211127, 71.08120185]
print t[0]
gives
60.211127
but...
t[0]
gives
60.211126999999998
as an output.
P.S.
from decimal import *
Decimal(t[0])
gives
Decimal('60.21112699999999762212610221467912197113037109375')
as output.Why is it happening so?