Last updated: Apr 8, 2024
Reading timeยท7 min
The Python "TypeError: builtin_function_or_method object is not iterable" occurs when we try to iterate over a built-in function because we forgot to call it.
To solve the error, make sure to call the built-in function with parentheses,
e.g. my_dict.keys()
.
Here is an example of how the error occurs.
my_dict = {'name': 'Bobby Hadz', 'age': 30} # โ๏ธ TypeError: 'builtin_function_or_method' object is not iterable for key in my_dict.keys: # ๐๏ธ Forgot to call the function print(key)
We forgot to call the built-in function with parentheses, e.g. my_dict.keys()
,
so our code actually tries to iterate over the function and not over the
iterable.
To solve the error, make sure to call the built-in function.
my_dict = {'name': 'Bobby Hadz', 'age': 30} for key in my_dict.keys(): print(key) # ๐๏ธ name, age for value in my_dict.values(): print(value) # ๐๏ธ Bobby Hadz, 30
We used parentheses to invoke the built-in function, so now we iterate over the iterable that the function returns.
Here is another example of how the error occurs when using the str.split()
method.
my_str = 'a,b,c' # โ๏ธ TypeError: 'builtin_function_or_method' object is not iterable for el in my_str.split: print(el)
We forgot to call the str.split()
method which caused the error.
my_str = 'a,b,c' for el in my_str.split(','): print(el) # ๐๏ธ a, b, c
Adding parentheses to call the method resolves the issue.
Make sure you haven't defined a variable or a function with the same name as a built-in function or method.
Shadowing a built-in method by redefining it often causes the error.
If you need to check if an object is iterable, use a try/except statement.
my_str = 'hello' try: my_iterator = iter(my_str) for i in my_iterator: print(i) # ๐๏ธ h, e, l, l, o except TypeError as te: print(te)
The iter() function raises a
TypeError
if the passed-in value doesn't support the __iter__()
method or
the sequence protocol (the __getitem__()
method).
If we pass a non-iterable object like a function to the iter()
function, the
except
block is run.
Examples of iterables include all sequence types (list
, str
, tuple
) and
some non-sequence types like dict
, file objects and other objects that define
an __iter__()
or a __getitem__()
method.
The Python "TypeError: 'method' object is not iterable" occurs when we try to iterate over a method instead of an iterable (e.g. a list).
To solve the error, make sure to call the method with parentheses, e.g.
my_method()
if it returns an iterable object.
Here is an example of how the error occurs.
class Employee(): def get_list(self): return ['Alice', 'Bobby', 'Carl'] emp = Employee() # โ๏ธ TypeError: 'method' object is not iterable for el in emp.get_list: # ๐๏ธ forgot to call method print(el)
We forgot to call the method with parentheses, e.g. emp.get_list()
, so our
code actually tries to iterate over the method and not over the list.
To solve the error, make sure to call the method.
class Employee(): def get_list(self): return ['Alice', 'Bob', 'Carl'] emp = Employee() for el in emp.get_list(): print(el) # ๐๏ธ Alice, Bob, Carl
We used parentheses to invoke the method, so now we iterate over the list that the method returns.
Another common cause of the error is having a variable and a method that share the same name.
class Employee(): get_list = ['Dean', 'Emma'] def get_list(self): return ['Alice', 'Bob', 'Carl'] emp = Employee() # โ๏ธ TypeError: 'method' object is not iterable for el in emp.get_list: print(el)
The method shadows the variable with the same name, so when we try to iterate over the list, we actually end up iterating over the method.
To solve the error, rename the method or the variable.
class Employee(): my_list = ['Dean', 'Emma'] def get_list(self): return ['Alice', 'Bob', 'Carl'] emp = Employee() for el in emp.my_list: print(el) # ๐๏ธ Dean, Emma
If you need to check if an object is iterable, use a try/except
statement.
my_str = 'hello' try: my_iterator = iter(my_str) for i in my_iterator: print(i) # ๐๏ธ h, e, l, l, o except TypeError as te: print(te)
The iter() function raises a
TypeError
if the passed-in value doesn't support the __iter__()
method or
the sequence protocol (the __getitem__()
method).
If we pass a non-iterable object like a method to the iter()
function, the
except
block is run.
Examples of iterables include all sequence types (list
, str
, tuple
) and
some non-sequence types like dict
, file objects and other objects that define
an __iter__()
or a __getitem__()
method.
The Python "TypeError: argument of type 'method' is not iterable" occurs when
we use the in
or not in
operators with a method but forget to call it.
To solve the error, make sure to call the method.
Here is an example of how the error occurs.
class Employee(): def get_list(self): return ['Alice', 'Bobby', 'Carl'] emp = Employee() # โ๏ธ TypeError: argument of type 'method' is not iterable print('Alice' in emp.get_list) # ๐๏ธ forgot to call method
We forgot to call the method with parentheses, e.g. emp.get_list()
.
Therefore our code actually tries to check for membership in the method rather than in the list.
To solve the error, make sure to call the method.
class Employee(): def get_list(self): return ['Alice', 'Bob', 'Carl'] emp = Employee() print('Alice' in emp.get_list()) # ๐๏ธ True print('Alice' not in emp.get_list()) # ๐๏ธ False
We used parentheses to invoke the method, so now we check for membership in the list rather than the method.
The in operator tests
for membership. For example, x in s
evaluates to True
if x
is a member of
s
, otherwise it evaluates to False
.
my_str = 'hello world' print('world' in my_str) # ๐๏ธ True print('another' in my_str) # ๐๏ธ False
x
not in s
returns the negation of x
in s
.
All built-in sequences and set types support the in
and not in
operators.
When used with a dictionary, the operators check for the existence of the
specified key in the dict
object.
The Python "TypeError: argument of type 'builtin_function_or_method' is not
iterable" occurs when we use the in
or not in
operators with a built-in
function but forget to call it.
To solve the error, make sure to call the built-in function, e.g.
my_dict.keys()
.
Here is an example of how the error occurs.
my_dict = {'id': 1, 'name': 'Bobby Hadz'} # โ๏ธ TypeError: argument of type 'builtin_function_or_method' is not iterable print('id' in my_dict.keys) # ๐๏ธ Forgot to call the function
We forgot to call the built-in function with parentheses, e.g. my_dict.keys()
,
so our code actually tries to check for membership in the function rather than
in the dict_keys
object.
To solve the error, make sure to call the built-in function.
my_dict = {'id': 1, 'name': 'Bobby Hadz'} print('id' in my_dict.keys()) # ๐๏ธ True
We used parentheses to invoke the built-in function, so now we check for membership in the iterable rather than the function.
Here is another example of how the error occurs.
my_str = 'a,b,c' # โ๏ธ TypeError: argument of type 'builtin_function_or_method' is not iterable print('a' in my_str.split) # ๐๏ธ Forgot to call the function
To solve the error, call the str.split()
method with parentheses.
my_str = 'a,b,c' print('a' in my_str.split(',')) # ๐๏ธ True my_other_str = 'HELLO WORLD' print('hello' in my_other_str.lower()) # ๐๏ธ True
Adding parentheses to call the method resolves the issue.
The in operator tests
for membership. For example, x in s
evaluates to True
if x
is a member of
s
, otherwise it evaluates to False
.
my_str = 'hello world' print('world' in my_str) # ๐๏ธ True print('another' in my_str) # ๐๏ธ False
x
not in s
returns the negation of x
in s
.
All built-in sequences and set types support the in
and not in
operators.
When used with a dictionary, the operators check for the existence of the
specified key in the dict
object.
The Python "TypeError: 'function' object is not iterable" occurs when we try to iterate over a function instead of an iterable (e.g. a list).
To solve the error, make sure to call the function, e.g. my_func()
if it
returns an iterable object.
Here is an example of how the error occurs.
def get_list(): return ['a', 'b', 'c'] # โ๏ธ TypeError: 'function' object is not iterable for el in get_list: # ๐๏ธ forgot to call function print(el)
get_list()
, so our code tries to iterate over the function and not over the list.To solve the error, make sure to call the function.
def get_list(): return ['a', 'b', 'c'] for el in get_list(): print(el) # ๐๏ธ a, b, c
We used parentheses to invoke the function, so now we iterate over the list that the function returns.
Another common cause of the error is having a variable and a function with the same name.
get_list = ['f', 'g'] def get_list(): return ['a', 'b', 'c'] # โ๏ธ TypeError: 'function' object is not iterable for el in get_list: print(el)
The function shadows the variable with the same name, so when we try to iterate over the list, we actually end up iterating over the function.
To solve the error, rename the function or the variable.
my_list = ['f', 'g'] def get_list(): return ['a', 'b', 'c'] for el in my_list: print(el) # ๐๏ธ f, g
If you need to check if an object is iterable, use a try/except
statement.
my_str = 'hello' try: my_iterator = iter(my_str) for i in my_iterator: print(i) # ๐๏ธ h, e, l, l, o except TypeError as te: print(te)
The iter() function raises a
TypeError
if the passed-in value doesn't support the __iter__()
method or
the sequence protocol (the __getitem__()
method).
If we pass a non-iterable object like a function to the iter()
function, the
except
block is run.
Examples of iterables include all sequence types (list
, str
, tuple
) and
some non-sequence types like dict
, file objects and other objects that define
an __iter__()
or a __getitem__()
method.
You can learn more about the related topics by checking out the following tutorials: