Contact: aviboots(AT)netvision.net.il
41,567 questions
54,187 answers
573 users
dict = {'python': 5, 'php': 3, 'java': 9, 'c++': 1} for key, value in dict.items(): print(value) ''' run: 5 3 9 1 '''