# 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()