Answers for "python convert exponential to int"

0

python convert exponential to int

value=str('6,0865000000e-01')
value2=value.replace(',', '.')
float(value2)
0.60865000000000002
Posted by: Guest on July-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language