when working with lists in python, they're indexed allowing you to pull any value via its index. For example:
list = ['a', 'b', 'c', 'd']
print(list[1])
>>> b
However, from what I've seen, this doesn't exist in dictionaries. In order to pull an object you have to type in the actual key itself to do that.
dict = {'a' = a, 'b' = b, 'c' = c}
If I wanted to pull the second, let's say the second key('b') without having to type the key itself, instead using it's index(which would be 1, if indexing exists in dictionaries that is) is there any way to do that? From my research I haven't been able to find a way to do this.