turn json into dict python code example
Example 1: python dict into json string
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",
}
Example 2: convert dict to json python
import json
with open('result.json', 'w') as fp:
json.dump(sample, fp)
Example 3: how to create dictionary in python from csv
input_file = csv.DictReader(open("coors.csv"))