MrLunk

Cannabis Budtender make empty file

Nov 1st, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import pickle
  2.  
  3. canna_list = [None] * 24
  4.  
  5. with open("canna_list2.txt", "wb") as fp:   #Pickling
  6.       pickle.dump(canna_list, fp)
Add Comment
Please, Sign In to add comment