5cn appears in json dump

Solutions on MaxInterview for 5cn appears in json dump by the best coders in the world

showing results for - " 5cn appears in json dump"
Julia
21 Mar 2017
1import json
2
3data = {'people': [{'name': 'Scott', 'website': 'stackabuse.com', 'from': 'Nebraska'}]}
4
5print(json.dumps(data))
6
7{"people": [{"name": "Scott", "website": "stackabuse.com", "from": "Nebraska"}]}
8