python file to dictionary 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: 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 3: how to write and read dictionary to a file in python

# Reading dictionary from a json file
json.load(open('1.json', 'r'))

Example 4: 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'))