python 保存ipython的内存中的变量以便下次启动时使用
时间:2015-06-02 11:21:16
收藏:0
阅读:763
保存
from save_ipython_variables import load_all_variables, save_variable
save_variable('pa_patmas', pa_patmas) save_variable('dhc_workload', dhc_workload) #put it into pickle for further use
读取
load_all_variables()
原文:http://blog.csdn.net/qq_21970857/article/details/46324225
评论(0)