J'essaie d'accéder à l'élément d'un dict_key par son index: test = {'foo': 'bar', 'hello': 'world'} keys = test.keys() # dict_keys object keys.index(0) AttributeError: 'dict_keys' object has no attribute 'index' Je veux avoir foo. même avec: keys[0] TypeError: 'dict_keys' object does not support...