[Solved] Print index number of dictionary?
I think you have mixed up index numbers with keys. Dictionaries are formed like such: {key: value} data.keys() will return a list of keys. In your case: data.keys() [0,1,2] From there, you can call the first item, which is 0 (First item in a list is 0, and then progresses by one). data.keys()[0] 0 If … Read more