python convert dict in file to json code example
Example 1: write dict to json python
import json
with open('result.json', 'w') as fp:
json.dump(sample, 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)