I have looked through the information that the Python docs give, but I\'m still a little confused. Could somebody post sample code that would write a new file then use pickl
Simple way to dump a Python data (e.g. dictionary) to a pickle file.
import pickle your_dictionary = {} pickle.dump(your_dictionary, open('pickle_file_name.p', 'wb'))