import pickle foo_list = [2,4,6] with open('foo_list.pickle', 'wb') as f: pickle.dump(foo_list, f). 這裡使用list這個資料結構來儲存, wb 表示 ...
確定! 回上一頁