摘要: 1.pickle 1. import pickle #序列化 d=pickle.dumps(object) #序列化 一堆二进制 ds=pickle.loads(d) #反序列化 # 将序列化的对象写入文件 dump f=open("cat",mode="wb") pickle.dump(objec 阅读全文
posted @ 2018-10-09 17:32 admin9s 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 1.collections # 1.Counter(计数器) from collections import Counter s="alex like pig" print(Counter(s)) # 2.deque 双向队列 # 1.栈: FILO First in Last Out 阅读全文
posted @ 2018-10-09 17:21 admin9s 阅读(108) 评论(0) 推荐(0) 编辑