Answers for "how to store dictionary in file python using pickle"

1

save a dict to pickle

import pickle

a = {'hello': 'world'}

with open('filename.pickle', 'wb') as handle:
    pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL)

with open('filename.pickle', 'rb') as handle:
    b = pickle.load(handle)
Posted by: Guest on August-11-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language