0
Q:

python dict to json

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
import json

appDict = {
  'name': 'messenger',
  'playstore': True,
  'company': 'Facebook',
  'price': 100
}
app_json = json.dumps(appDict)
print(app_json)
3
import json   
# Data to be written
dictionary ={   
  "A": 5,   
  "B": "guys",   
}

# Serializing json
json_object = json.dumps(dictionary, indent = 4)   
print(json_object)
# Output
{
    "A": 5,
    "B": "guys",
}
2

  import json

# some JSON, could be a file opening :
x =  '{ "name":"John", "age":30, "city":"New 
  York"}'

# parse x:
y = json.loads(x)

# the result is a 
  Python dictionary:
print(y["age"]) 
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