Contact: aviboots(AT)netvision.net.il
39,970 questions
51,912 answers
573 users
import json python_obj = { "name": "R2D3", "Code":"Python", "age": 60 } json_obj = json.dumps(python_obj) print(json_obj) ''' run: {"name": "R2D3", "Code": "Python", "age": 60} '''