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()
Bright Bat