Ich versuche, über den Index auf das Element eines dict_key zuzugreifen: test = {'foo': 'bar', 'hello': 'world'} keys = test.keys() # dict_keys object keys.index(0) AttributeError: 'dict_keys' object has no attribute 'index' Ich will bekommen foo. Das gleiche mit: keys[0] TypeError: 'dict_keys'...