cPickleを使ってみる。
ダンプするとき
import cPickle
with open("list.txt","w") as f:
cPickle.dump([1,2,3,4,5],f)
ロードするとき
with open("list.txt","r") as f:
a = cPickle.load(f)
print a
Python クックブック 第2版
Alex Martelli,Anna Martelli Ravenscroft,David Ascher
オライリー・ジャパン / ¥ 4,410 ()
在庫あり。
Alex Martelli,Anna Martelli Ravenscroft,David Ascher
オライリー・ジャパン / ¥ 4,410 ()
在庫あり。