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