Contact: aviboots(AT)netvision.net.il
41,605 questions
54,259 answers
573 users
dict = {'key1':34, 'key2':89, 'key3':12, 'key4':72, 'key5':90} for i, j in enumerate(dict.values()): print(i, j) ''' run: 0 34 1 89 2 12 3 72 4 90 '''