最佳答案
我正在尝试通过它的索引访问 dict _ key 的元素:
test = {'foo': 'bar', 'hello': 'world'}
keys = test.keys() # dict_keys object
keys.index(0)
AttributeError: 'dict_keys' object has no attribute 'index'
我想得到 foo
。
同上:
keys[0]
TypeError: 'dict_keys' object does not support indexing
我怎么能这么做?