Answers for "how to write and read dictionary to a file in python"

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
Posted by: Guest on April-16-2020
3

python write a dictionary to file

dictionary = {'someKey' : 'someValue'}
file_path = 'somePathToFile/someFileName.py'
with open(file_path, 'w') as output_file:
    print(dictionary, file=output_file)
Posted by: Guest on December-30-2020
0

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'))
Posted by: Guest on April-07-2021
0

how to write and read dictionary to a file in python

# Reading dictionary from a json file
json.load(open('1.json', 'r'))
Posted by: Guest on April-07-2021

Code answers related to "how to write and read dictionary to a file in python"

Python Answers by Framework

Browse Popular Code Answers by Language