Answers for "what can be store in pickle python"

1

write data to using pickle

import pickle

example_dict = {1:"6",2:"2",3:"f"}

pickle_out = open("dict.pickle","wb")
pickle.dump(example_dict, pickle_out)
pickle_out.close()
Posted by: Guest on May-27-2020
1

python view pickle

python -m pickle obj.pickle
Posted by: Guest on October-22-2020

Code answers related to "what can be store in pickle python"

Python Answers by Framework

Browse Popular Code Answers by Language