색인으로 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
어떻게해야합니까?
collections.OrderedDict
주문 키를 원할 경우 사용 )
dict.keys()
목록이 아닌보기 객체와 같은 집합을 반환하므로 색인을 생성 할 수 없습니다. 사용keys = list(test)