Json To Dict import json jsonData = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; print(jsonData) print(type(jsonData)) text = json.loads(jsonData) print(text) print(type(text)) ####################### {"a":1,"b":2,"c":3,"d":4,"e":5} {'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5} Dict T