read file and store in dictionary python code example
Example: python read dictionary from file
import ast
with open("/path/to/file", "r") as data:
dictionary = ast.literal_eval(data.read())
import ast
with open("/path/to/file", "r") as data:
dictionary = ast.literal_eval(data.read())