how to read a file into a dictionary python code example
Example 1: python read dictionary from file
import ast
with open("/path/to/file", "r") as data:
dictionary = ast.literal_eval(data.read())
Example 2: how to write and read dictionary to a file in python
# Reading dictionary from a json file
json.load(open('1.json', 'r'))