write dict text to file python code example
Example 1: 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
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'))