paint-brush
How to fix the Python TypeError: ‘int’ Object is not Iterableby@itsmycode
10,274 reads
10,274 reads

How to fix the Python TypeError: ‘int’ Object is not Iterable

by Srinivas RamakrishnaSeptember 9th, 2021
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow
EN

Too Long; Didn't Read

Int objects are not directly iterable as they hold a single integer value and do not contain the \*\*‘`__iter__`‘ \** method. Instead of using int, try using list if it makes sense, and it can be iterated using for and while loop easily. Try using the `range()` method in the for loop, which will eventually generate a list of sequential numbers.
featured image - How to fix the Python TypeError: ‘int’ Object is not Iterable
Srinivas Ramakrishna HackerNoon profile picture


What exactly is TypeError: ‘int’ object is not iterable?

The most common scenario where developers get this error is when you try to iterate a number using for loop where you tend to forget to use the range() method, which creates a sequence of a number to iterate.


Consider the following code snippet to accept grades for each student in a class.


students=int(input('Please enter the number of students in the class: '))

for number in students:
        math_grade=(input("Enter student's Maths grade: "))
        science_grade=(input("Enter student's Science grade: "))
        social_grade=(input("Enter student's Scoial grade: "))

# Output

Please enter the number of students in the class: 5
Traceback (most recent call last):
  File "c:\Projects\Tryouts\listindexerror.py", line 3, in <module>
    for number in students:
TypeError: 'int' object is not iterable


The above code is pretty straightforward, which reads input on the total number of students in a class, and for each student, it accepts the subject grades.


The easier way everyone thinks here is to go with for loop and iterate the number of students to accept the grade. If you run the code, Python will throw a TypeError: ‘int’ object is not iterable.

Why does Python throw TypeError: ‘int’ object is not iterable?


In Python, unlike lists, integers are not directly iterable as they hold a single integer value and do not contain the **‘__iter__‘ ** method; that’s why you get a TypeError.


You can run the below command to check whether an object is iterable or not.


print(dir(int))
print(dir(list))
print(dir(dict))

TypeError: ‘int’ object is not iterable

python typeerror int object is not iterable

If you look at the output screenshots, int does not have the ** ‘iter’ ** method, whereas the list and dict have the **'iter' ** method.

How to fix TypeError: ‘int’ object is not iterable?


There are two ways you can resolve the issue, and the first approach is instead of using int, try using a list if it makes sense, and it can be iterated using for and while loop easily.


The second approach is: if you still want to iterate int object, then try using the range() method in the for loop, which will eventually generate a list of sequential numbers.


students=int(input('Please enter the number of students in the class: '))

for number in range(students):
        math_grade=(input("Enter student's Maths grade: "))
        science_grade=(input("Enter student's Science grade: "))
        social_grade=(input("Enter student's Scoial grade: "))


The post Python TypeError: ‘int’ object is not iterable appeared first on ItsMyCode.