Contact: aviboots(AT)netvision.net.il
39,970 questions
51,912 answers
573 users
import json dict = '{"python": 1, "python": 2, "java": 3, "c": 4, "c": 5, "c++": 6}' json_obj = json.loads(dict) print(json_obj) ''' run: {'python': 2, 'java': 3, 'c': 5, 'c++': 6} '''