How to Convert a String to Float in Python
In this tutorial, we are going to see how to convert String to Float in Python. Python provides different types of variables for programmers. We can use data types like int, float, string, list, set… in our applications. When using different types of variables, it may be necessary to convert these to different types.
Just like the str() function, Python also offers a handy built-in function that takes an object of type String as an argument and returns the corresponding Float object.
[st_adsense]
How to Convert a String to Float in Python
# Here nbr is an object of type string nbr = "98.122" print(nbr) # Converting string to float float_nbr = float(nbr) print(float_nbr)
Output:
98.122 98.122
Here, although the output is the same but you have to keep in mind that the first line displays an object of type string, while the second line displays float object.
[st_adsense]