标签:bsp pen python color style 毕业 import pre logs
Python可以使用pickle做序列化:
序列化示例:
import pickle
with open(‘les.pickle‘, ‘wb‘) as f: pickle.dump(les, f, -1)
反序列化
import pickle
with open(‘les.pickle‘, ‘rb‘) as le: les = pickle.load(le)
标签:bsp pen python color style 毕业 import pre logs
原文地址:http://www.cnblogs.com/1xin/p/7439771.html