Hello I´m trying using the next piece of code:
import pickle
object = Object()
filehandler = open(filename, 'w')
pickle.dump(object, filehandler)
I would like to know what should be the extension of the file 'filename'. Thank you!
You could use any filename
, but as an FYI it's common to use ".p" (for obvious reasons).
pickle.dump( favorite_color, open( "save.p", "wb" ) )
Read: UsingPickle