I am trying to use the .keys() and instead of getting a list of the keys like always have in the past. However I get this.

b = { 'video':0, 'music':23 }
k = b.keys()
print( k[0] )

>>>TypeError: 'dict_keys' object does not support indexing

print( k )
dict_keys(['music', 'video'])

it should just print ['music', 'video'] unless I'm going crazy. Any idea whats going on?

Thanks for your time.

link|improve this question
3  
Since nobody linked the official documentation yet, I'll do it: Dictionary view object. – Rik Poggi Jan 21 at 14:30
Please note that dictionaries are unordered, so that b.keys()[0] is generally not a very useful thing to do. – Lennart Regebro Jan 21 at 20:32
feedback

2 Answers

up vote 10 down vote accepted

Python 3 changed the behavior of dict.keys such that it now returns a dict_keys object, which is iterable but not indexable (it's like the old dict.iterkeys, which is gone now). You can get the Python 2 result back with an explicit call to list:

>>> b = { 'video':0, 'music':23 }
>>> k = list(b.keys())
>>> k
['music', 'video']

or just

>>> list(b)
['music', 'video']
link|improve this answer
1  
just list(b) does the same – Jochen Ritzel Jan 21 at 14:19
@JochenRitzel: good point, added it! – larsmans Jan 21 at 14:21
I see thank you. So how would you go about iterating through the dict_keys? – tokageKitayama Jan 21 at 14:21
1  
@tokageKitayama: for x in b.keys() or just for x in b. – larsmans Jan 21 at 14:23
Thank you for the swift answer. – tokageKitayama Jan 21 at 15:04
feedback

If you assigned k like so:

k = list(b.keys())

your code will work.

As the error says, the dict_keys type does not support indexing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.