Estoy tratando de acceder al elemento dict_key por su índice: test = {'foo': 'bar', 'hello': 'world'} keys = test.keys() # dict_keys object keys.index(0) AttributeError: 'dict_keys' object has no attribute 'index' Quiero llegar foo. lo mismo con: keys[0] TypeError: 'dict_keys' object does not...