Python ValueError: could not convert string to float [Fix]

ValueError: could not convert string to float in Python is a common error when trying to convert a string object. An invalid floating-point value, including spaces or commas, is usually to blame. When parsing a string object into a float, Python will raise the ValueError exception.

With the help of examples, we’ll look at what this error means and how to fix it in your code in the following section.

Reasons For ValueError: could not convert string to float

The numbers we receive are in the form of a string when we read and process data from Excel or CSV, and we must convert them to floats in the code to make them usable.

In Python, the float() method is included, which allows you to convert a string to a floating-point number with a single call. When we need to perform a mathematical operation on a string object, this method will come in handy.

The float() method can only be used to convert strings that contain numbers that are similar to floats. This implies that you will be unable to convert a value if

  • If a value contains spaces, it is called a numeric value.
  • A comma is contained within a value.
  • A value contains special characters that are not found in other values.

Code Example For Could Not Convert String To Float In Python

Let us see a code example below and check when you can experience such a ValueError message in Python.

#Calculating Avg
totalNumStudent = "20,000"
totalAgeOfStudent = 221000

#Average age of the students
avgAge = (totalAgeOfStudent/float(totalNumStudent))

print(avgAge)
Traceback (most recent call last):
  File "c:\Users\ravi9\Coduber\test.py", line 6, in <module>
    avgAge = (totalAgeOfStudent/float(totalNumStudent))
ValueError: could not convert string to float: '20,000'

Take a look at a simple example to see how the ValueError exception is handled. This code accepts the total number of students in a string, converts it to float format, and then performs an average age calculation on the value received in string format.

Python ValueError: could not convert string to float

For example, if you examine the code above, the total number of students is a numeric value separated by commas, and when Python attempts to parse this value into a floating-point number, it will throw a ValueError: could not convert string to float error.

There are a couple of other scenarios in which you might encounter ValueError.

  • Changing an empty string into a floating-point number is a common task.
  • Converting a string that is not a floating-point number to a floating-point number

How To Fix ValueError: could not convert string to float

There are a variety of options for dealing with the problem. Examine each of the possible solutions one by one.

Method 1: Ensure That String is a Valid Numeric Value

Cleansing up and passing data in its correct format (if we already know the data format) before converting it to float is the most straightforward method of handling data conversions.

If the value contains a comma, a space, or any other special characters, the value must be processed before it can be converted to float format.

In the code below, we are storing a valid float number as a string, and then we are converting that string into floating-point numbers so that we can calculate the average age.

#Calculating Avg
totalNumStudent = "20000"
totalAgeOfStudent = 221000

#Average age of the students
avgAge = (totalAgeOfStudent/float(totalNumStudent))

print("The Average Age Of Students In School is: ",avgAge)
The Average Age Of Students In School is:  11.05

Method 2: Use Exception Handling

When dealing with an invalid data format, it is best to handle the exception as soon as possible. The code in the following example will execute the code in the try block. If the conversion is unsuccessful, the code in the except block is executed.

#Calculating Avg
totalNumStudent = "20,000"
totalAgeOfStudent = 221000

try:
    #Average age of the students
    avgAge = (totalAgeOfStudent/float(totalNumStudent))

    print("The Average Age Of Students In School is: ",avgAge)

except:
    print("Some of Values are in Invalid Format Please Check.")
Some of Values are in Invalid Format Please Check.

Wrap Up

I hope you were successful in resolving the ValueError: Could not convert string to float using the methods discussed above.

As this error typically occurs when attempting to convert a string to a float that is not in proper numeric format, you can either check if the format of the string is in proper numeric format or use exception handling to inform the user that the string they have entered is not in a proper format.

Further Read:

  1. Python pip: command not found Quick Fix
  2. Python Write Text File
  3. [Fixed] Python TypeError: ‘NoneType’ Object Is Not Subscriptable
  4. [Fixed] Python TypeError: ‘list’ object is not callable
  5. Python TypeError: ‘int’ Object Is Not Subscriptable Fix

Leave a Comment