Rowan
0
Q:

how to clear a pickle file

#Create an empty variable
empty_list = []
#Open the pickle file in 'wb' so that you can write and dump the empty variable
openfile = open('filename', 'wb')
pickle.dump(empty_list, openfile)
openfile.close()

1

New to Communities?

Join the community