Contact: aviboots(AT)netvision.net.il
40,959 questions
53,424 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} '''