python convert exponential to int

Solutions on MaxInterview for python convert exponential to int by the best coders in the world

showing results for - "python convert exponential to int"
Angela
18 Nov 2017
1value=str('6,0865000000e-01')
2value2=value.replace(',', '.')
3float(value2)
40.60865000000000002