Kodeclik Logo

Our Programs

Courses

Gifting

Learn More

Schedule

Kodeclik Blog

How to convert a string to a float in Python

Recap that strings are used to denote names, addresses, etc and floats are used to represent real numbers, Sometimes you might have input a value from a user which was intended to be a floating point variable but instead got stored as a string. You will need to convert it into a float inside your Python program. Let us learn how to do this!

First, let us create a program to obtain a floating point value from the user:

temperature = input("Hi! What is the temperature like in degrees F? ")
print(temperature)
print(type(temperature))

If we run this program, here is a sample interaction:

Hi! What is the temperature like in degrees F? 75
75
<class 'str'>

Note that the user’s input (which was “75”) is internally stored as a string so that when we print the type of the input, we obtain ‘str’ as the answer. This means we cannot do any arithmetic operations on it, like addition, subtraction, etc. We will need to convert it into a floating point value.

How to convert a String to a Float in Python

The way to convert a string to a float is to use the float() function, like so:

temperature = input("Hi! What is the temperature like in degrees F? ")
print(temperature)
print(type(temperature))
ftemperature = float(temperature)
print(ftemperature)
print(type(ftemperature))

If we run the above program:

Hi! What is the temperature like in degrees F? 75
75
<class 'str'>
75.0
<class 'float'>

Note that the variable which was a string before is now a float, and reflects it in its value as 75.0.

This also means that we can input floating point values when queried:

Hi! What is the temperature like in degrees F? 75.345
75.345
<class 'str'>
75.345
<class 'float'>

Here, the 75.345 which used to be a string is converted to a float with the above value.

On the other hand, if we do:

Hi! What is the temperature like in degrees F? hot
hot
<class 'str'>
Traceback (most recent call last):
  File "main.py", line 4, in <module>
    ftemperature = float(temperature)
ValueError: could not convert string to float: 'hot'

We cannot map “hot” to a float using the float() function. The input to float() must be a string containing only numbers (and perhaps decimal points and negative signs).

As we have seen in this blogpost, it is extremely easy to convert a string to a float so that you can do arithmetic operations on the result which you could not do before.

For more Python content, checkout the math.ceil() and math.floor() functions! Also
learn about the math domain error in Python and how to fix it!

Interested in more things Python? Checkout our post on Python queues. Also see our blogpost on Python's enumerate() capability. Also if you like Python+math content, see our blogpost on Magic Squares. Finally, master the Python print function!

Want to learn Python with us? Sign up for 1:1 or small group classes.

Kodeclik sidebar newsletter

Join our mailing list

Subscribe to get updates about our classes, camps, coupons, and more.

About

Kodeclik is an online coding academy for kids and teens to learn real world programming. Kids are introduced to coding in a fun and exciting way and are challeged to higher levels with engaging, high quality content.

Copyright @ Kodeclik 2024. All rights reserved.