2016-11-27 01:42:59 -06:00

6 lines
128 B
Python

import pickle
def output (data, destination):
with open(destination, "w") as out_file:
pickle.dump(data, out_file)