I have a string and i want to convert it to float. When i convert my string to float it returns me something different. My code is;
a="0.0000010232"
print(float(a))
What i expect: 0.0000010232
What i get: 1.0232e-06
So what do i need to do?
I have a string and i want to convert it to float. When i convert my string to float it returns me something different. My code is;
a="0.0000010232"
print(float(a))
What i expect: 0.0000010232
What i get: 1.0232e-06
So what do i need to do?