Answers for "python save dictionary to file"

1

python save a dictionary as an object

import pickle 
dictionary_data = {"a": 1, "b": 2}

# SAVE
with open("data.pkl", "wb") as pkl_handle:
	pickle.dump(dictionary_data, pkl_handle)

# LOAD
with open("data.pkl", "rb") as pkl_handle:
	output = pickle.load(pkl_handle)
    
print(output)
Posted by: Guest on November-13-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
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

Code answers related to "python save dictionary to file"

Python Answers by Framework

Browse Popular Code Answers by Language