python float no scientific notation code example
Example: how to display printed values without scientific notation python
>>> a = -7.1855143557448603e-17
>>> '{:f}'.format(a)
'-0.000000'
>>> a = -7.1855143557448603e-17
>>> '{:f}'.format(a)
'-0.000000'