Contact: aviboots(AT)netvision.net.il
39,864 questions
51,786 answers
573 users
import json json_date = r'{"name": "Am", "city": null, "language": null}' dict = json.loads(json_date) print(dict) ''' run: {'name': 'Am', 'city': None, 'language': None} '''