Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
dict = { "name": "Tom", "age": 47, "langauge": "python", "company": "google"} for value in dict.values(): print(value) ''' run: Tom 47 python google '''