6 lines
129 B
Python
Raw Normal View History

2016-11-27 01:42:59 -06:00
import pickle
def output (data, destination):
2016-11-27 01:58:47 -06:00
with open(destination, "wb") as out_file:
2016-11-27 01:42:59 -06:00
pickle.dump(data, out_file)