how to create dictionary from text file in 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 create text file with python and store a dictionary
import json
Dict = {'Dict': Dict}
with open('file.txt', 'w') as file:
file.write(json.dumps(Dict))
Example 3: make dictionary from text file python
d = {}
with open("file.txt") as f:
for line in f:
(key, val) = line.split()
d[int(key)] = val