json python dict to json code example
Example 1: save a dict to json python
import json
with open('data.json', 'w') as fp:
json.dump(data, fp)
Example 2: python dict to json
# app.py
import json
appDict = {
'name': 'messenger',
'playstore': True,
'company': 'Facebook',
'price': 100
}
app_json = json.dumps(appDict)
print(app_json)