convert file into dictionary python code example
Example 1: how to write and read dictionary to a file in python
# Reading dictionary from a json file
json.load(open('1.json', 'r'))
Example 2: how to write and read dictionary to a file in python
# Writing dictionary as json
import json
d = {'guitar':'Jerry', 'drums':'Mickey' }
json.dump(d, open('1.json', 'w'))