Do you encounter the following error message?
TypeError: 'dict_values' object is not subscriptable
You’re not alone! This short tutorial will show you why this error occurs, how to fix it, and how to never make the same mistake again.
So, let’s get started!
Solution
Python raises the “TypeError: 'dict_values' object is not subscriptable
” if you use indexing or slicing on the dict_values
object obtained with dict.values()
. To solve the error, convert the dict_values
object to a list such as in list(my_dict.values())[0]
.
print(list(my_dict.values())[0])
Example
The following minimal example that leads to the error:
d = {1:'a', 2:'b', 3:'c'} print(d.values()[0])
Output:
Traceback (most recent call last): File "C:\Users\xcent\Desktop\code.py", line 2, in <module> print(d.values()[0]) TypeError: 'dict_values' object is not subscriptable
Note that the same error message occurs if you use slicing instead of indexing:
d = {1:'a', 2:'b', 3:'c'} print(d.values()[:-1]) # <== same error
Fixes
The reason this error occurs is that the dictionary.values()
method returns a dict_values
object that is not subscriptable.
You can use the type()
function to check it for yourself:
print(type(d.values())) # <class 'dict_values'>
Note: You cannot expect dictionary values to be ordered, so using indexing on a non-ordered type wouldn’t make too much sense, would it? β‘
You can fix the non-subscriptable TypeError by converting the non-indexable dict_values
object to an indexable container type such as a list in Python using the list()
or tuple()
function.
Here’s an example fix:
d = {1:'a', 2:'b', 3:'c'} print(list(d.values())[0]) # a
Here’s another example fix:
d = {1:'a', 2:'b', 3:'c'} print(tuple(d.values())[:-1]) # ('a', 'b')
Both lists and tuples are subscriptable so you can use indexing and slicing after converting the dict_values
object to a list or a tuple.
π Full Guide: Python Fixing This Subsctiptable Error (General)
Summary
Python raises the TypeError: 'dict_values' object is not subscriptable
if you try to index x[i]
or slice x[i:j]
a dict_values
object.
The dict_values
type is not indexable, i.e., it doesn’t define the __getitem__()
method. You can fix it by converting the dictionary values to a list using the list()
built-in function.
Alternatively, you can also fix this by removing the indexing or slicing call, or defining the __getitem__
method. Although the previous approach is definitely better.
What’s Next?
I hope you’d be able to fix the bug in your code! Before you go, check out our free Python cheat sheets that’ll teach you the basics in Python in minimal time:
If you struggle with indexing in Python, have a look at the following articles on the Finxter blog—especially the third!
π Related Articles: