Answers for "how to store dictionary in file python"

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
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
2

how to save dict in txt format

dict = {'Python' : '.py', 'C++' : '.cpp', 'Java' : '.java'}
f = open("dict.txt","w")
f.write( str(dict) )
f.close()
Posted by: Guest on May-27-2020
1

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))
Posted by: Guest on March-05-2021

Code answers related to "how to store dictionary in file python"

Python Answers by Framework

Browse Popular Code Answers by Language