Q:

convert dictionsr to json file python

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 
# Data to be written 
dictionary ={ 
	"name" : "sathiyajith", 
	"rollno" : 56, 
	"cgpa" : 8.6, 
	"phonenumber" : "9976770500"
} 
with open("sample.json", "w") as outfile: 
	json.dump(dictionary, outfile) 
0
import json
with open('result.json', 'w') as fp:
    json.dump(sample, fp)
3

New to Communities?

Join the community