How to convert the String to a Float in Python
In python, we have a built-in float()
function by using that we can convert a string to float or double.
Example:
price = "953.343"
print(float(price))
Output:
953.343
You can also convert array of strings to the float like this.
x = ["525.0", "125.6", "929.2"]
print(list(map(float, x)))
Output:
[525.0, 125.6, 929.2]