Back to Blog
Developer guide
PYTHONJuly 1, 2026

Python ValueError Examples and Fixes for Developers: A Comprehensive Guide

As a Python developer, you've likely encountered the infamous ValueError at some point in your coding journey. This error can be frustrating, especially when you're under a tight deadline or struggling to identify the root cause. In this article, we'll explore some common Python ValueError examples and provide actionable fixes to help you resolve these issues with ease. By the end of this guide, you'll be equipped with the knowledge and skills to tackle ValueError errors like a pro.

1. ValueError: invalid literal for int() with base 10

This error occurs when you attempt to convert a non-numeric string or value to an integer using the int() function

Why It Happens

The cause of this error is usually a misformatted or invalid input value, such as a string that contains non-numeric characters

How to Fix It

To resolve this error, ensure that the input value is a valid integer by either using a try-except block to catch the ValueError or by explicitly converting the string to an integer using the int() function with the correct base


2. ValueError: not enough values to unpack (expected 2, got 1)

This error occurs when you attempt to unpack a single value into multiple variables using the tuple unpacking syntax

Why It Happens

The cause of this error is usually a mismatch between the number of values being unpacked and the number of variables

How to Fix It

To resolve this error, ensure that the number of values being unpacked matches the number of variables by either removing unnecessary variables or adding more values to the tuple


3. ValueError: too many values to unpack (expected 2)

This error occurs when you attempt to unpack a tuple or list with more values than the number of variables

Why It Happens

The cause of this error is usually a mismatch between the number of values being unpacked and the number of variables

How to Fix It

To resolve this error, ensure that the number of values being unpacked matches the number of variables by either removing unnecessary variables or adding more variables to handle the excess values


4. ValueError: unsupported format specifier

This error occurs when you attempt to format a value using an unsupported format specifier

Why It Happens

The cause of this error is usually an incorrect or outdated format specifier

How to Fix It

To resolve this error, update the format specifier to a supported one or use the str.format() method to format the value


5. ValueError: max recursion depth exceeded while calling a Python object

This error occurs when your Python program exceeds the maximum recursion depth due to a recursive function or method call

Why It Happens

The cause of this error is usually an infinite recursion loop or a function call with a large number of recursive calls

How to Fix It

To resolve this error, identify and fix the recursive function call or use an alternative approach to avoid recursion


6. ValueError: invalid timestamp

This error occurs when you attempt to parse an invalid timestamp using the datetime module

Why It Happens

The cause of this error is usually an incorrect or malformed date or time string

How to Fix It

To resolve this error, ensure that the timestamp is valid and correctly formatted before parsing it using the datetime module


7. ValueError: cannot convert float NaN to integer

This error occurs when you attempt to convert a NaN (Not a Number) value to an integer

Why It Happens

The cause of this error is usually a NaN value being assigned to an integer variable

How to Fix It

To resolve this error, check for NaN values before attempting to convert them to integers and handle them accordingly

Conclusion

ValueError errors in Python can be frustrating, but by understanding the common causes and solutions outlined in this article, you'll be better equipped to tackle these errors and write more robust and reliable code. Remember to always check your input values, format specifiers, and recursive function calls to avoid these errors. With practice and experience, you'll become more proficient in debugging and resolving ValueError errors, making you a more effective and efficient Python developer.

Explore More Debugging Resources

- [Browse all PYTHON errors](/languages/python)

- [Browse errors by type](/error-types)

- [Search all documented errors](/search)

- [Use the Error Explainer](/error-explainer-tool)

Browse allPython errors

Related PYTHON Articles

Have a specific error? Get an instant explanation.

Explain an Error