Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

full_pickle

# Saves the "data" with the "title" and adds the .pickle
def full_pickle(title, data):
 pikd = open(title + ‘.pickle’, ‘wb’)
 pickle.dump(data, pikd)
 pikd.close()
Source by betterprogramming.pub #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
7+2 =