Answers for "convert json object to python dictionary"

4

save a dict to json python

import json

with open('data.json', 'w') as fp:
    json.dump(data, fp)
Posted by: Guest on August-26-2020
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)
Posted by: Guest on June-04-2020

Code answers related to "convert json object to python dictionary"

Code answers related to "Javascript"

Browse Popular Code Answers by Language