In [7]:
val = -770.123329847239847234987
t = 21.023232304923049234

In [17]:
print('the {0} value is: {1}'.format(t, val))


the 21.02323230492305 value is: -770.1233298472398

In [ ]:
'efe'.format()

In [ ]:


In [ ]:


In [1]:
vals = [True, False, True]

In [2]:
import numpy as np

In [7]:
vv = np.asarray(vals).sum()

In [4]:
vals


Out[4]:
[True, False, True]

In [9]:
vv.dtype


Out[9]:
dtype('int64')

In [ ]: