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