DEV Community

Coder
Coder

Posted on • Updated on

TypeError: cannot unpack non-iterable 'X' object in Python

As a Python enthusiast or a beginner, you will come across errors every once in a while. One such error is the TypeError: cannot unpack non-iterable 'X' object in Python.

This error pops up when you try to unpack a non-iterable object such as an integer, float, or boolean. This means that Python cannot unpack or break down a single value into multiple variables.

In this blog post, we will explore this error and understand how to fix it.

What is Python Iterable?

Before diving deep into the error, let’s understand what the term ‘iterable’ means in Python.

In Python, an iterable is an object capable of returning its elements one at a time. Examples of iterable objects include lists, tuples, strings, and dictionaries.

In simple terms, an iterable is any object you can loop through. For instance, you can iterate through a list of items with a for loop, while an integer is a non-iterable object.

Understanding the Error Code

Now that we understand what iterable means let’s look at TypeError: cannot unpack non-iterable 'X' object in Python.

Let's say you try to unpack a non-iterable object:

x = 5
a, b = x
Enter fullscreen mode Exit fullscreen mode

When you try to run this code you will get the error:

TypeError: cannot unpack non-iterable 'int' object
Enter fullscreen mode Exit fullscreen mode

Keep in mind that the ‘X’ in the error message refers to the type of non-iterable object you are trying to unpack. For instance, if you try to unpack a boolean, the error will read ‘TypeError: cannot unpack non-iterable 'bool' object'.

Reasons for the Error

There are several reasons why you may encounter this error in your Python code. Let's look at some of the most common reasons:

Trying to Unpack a Non-Iterable Object

The most common reason for this error is attempting to unpack non-iterable objects. We have already seen what happens when we try to unpack an integer, float or boolean. You can only unpack an iterable object.

Assigning more Variables than the Iterable Contains

If you attempt to unpack an iterable with more variables than it contains, you will encounter the TypeError error. For instance, we cannot unpack a list of two items into three variables as shown below:

mylist = [1, 2]
x, y, z = mylist
Enter fullscreen mode Exit fullscreen mode

This will raise the following error:

TypeError: cannot unpack non-iterable 'int' object
Enter fullscreen mode Exit fullscreen mode

Passing an Empty Iterable

If you try to unpack an empty iterable, Python cannot unpack the zero elements into any variables. Therefore, an error will occur. The following code snippet demonstrates this:

empty_list = []
x, y = empty_list
Enter fullscreen mode Exit fullscreen mode

The error message will read:

TypeError: cannot unpack non-iterable 'int' object
Enter fullscreen mode Exit fullscreen mode

How to Fix the ‘Cannot Unpack Non-Iterable Object’ Error

Now that we understand the reasons for this error let's look at how to fix the code to eliminate the error. Below are five ways to fix the error:

1. Ensure You are Unpacking an Iterable

As we have seen, trying to unpack non-iterable objects will always raise an error. Therefore, we must ensure that we're unpacking an iterable object, such as a string or list.

2. Check the Number of Variables in the Unpacking Assignment

When you try to unpack an iterable, ensure that the number of variables on the left side of the assignment is the same as the number of items in the iterable. If the number of variables is higher or lower than the number of items, Python will raise the TypeError error.

3. Avoid Empty Iterables

When we try to unpack an empty iterable, the code will raise an error. Therefore, we can avoid this error by ensuring that we're unpacking a non-empty iterable object.

4. Use the Try/Except Block

Another way to handle the error is to use the try and except block. This allows Python to attempt the unpacking and catch the error if it occurs. If the unpacking is successful, the code in the try block will execute, and the error handling block won't execute.

try:
  mylist = [1, 2]
  x, y, z = mylist
except TypeError:
  print('Error: Invalid number of variables')
Enter fullscreen mode Exit fullscreen mode

5. Use a list comprehension

In some cases, we may want to unpack an iterable into multiple variables, but the number of variables is not known beforehand. In this case, we can use a list comprehension to unpack the iterable into a list of variables. The following code shows how to do this:

mylist = [1, 2, 3, 4]

x, y, *z = mylist
print(x) # prints 1
print(y) # prints 2
print(z) # prints [3, 4]
Enter fullscreen mode Exit fullscreen mode

In this example, the star operator (*) allows us to unpack the remaining elements of the list into the variable z.

Conclusion

The ‘TypeError: cannot unpack non-iterable 'X' object’ error is quite common in Python programming, but it’s easy to fix. In most cases, we encounter it when unpacking non-iterable objects. We can resolve this by ensuring that we unpack iterable objects.

In some cases, the number of variables in the assignment may be different from the number of elements in the iterable. Ensure that the assignment variables are always the same as the number of elements in the iterable.

Lastly, using try/except blocks, avoiding empty iterables, and using list comprehension are also possible ways to handle the error in your Python code.

Top comments (0)