0
Q:

save a dict to json python

import json

with open('data.json', 'w') as fp:
    json.dump(data, fp)
4
import json
with open('result.json', 'w') as fp:
    json.dump(sample, fp)
3
# app.py

import json

appDict = {
  'name': 'messenger',
  'playstore': True,
  'company': 'Facebook',
  'price': 100
}
app_json = json.dumps(appDict)
print(app_json)
0

New to Communities?

Join the community