Answers for "python dictionary to file"

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

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
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 "python dictionary to file"

Python Answers by Framework

Browse Popular Code Answers by Language