python3.2 数据存储pickle模块的使用方法详解,python3.2pickle,这是一篇关于python
python3.2 数据存储pickle模块的使用方法详解,python3.2pickle,这是一篇关于python
这是一篇关于python持久性管理python pickle模块详细介绍的文章,文中讲了python中的pickle如何使用原理的代码应用实例。python3.2中的pickle模块简单的理解是为了序列化/反序列化一个对象的,作用是可以把一个对象持久化存储。
pickle模块对数据的简单存储处理的方法:
import pickleshoplistfile = 'shoplist.data'# the name of the file where we will store the objectshoplist = ['apple', 'mango', 'carrot']# Write to the filef = open(shoplistfile, 'wb')#help(f)#www.iplaypy.compickle.dump(shoplist, f) # dump the object to a filef.close()del shoplist # remove the shoplist# Read back from the storagef = open(shoplistfile, 'rb')storedlist = pickle.load(f)print(storedlist)
编橙之家文章,
相关内容
- 用Python为Vim编写的小插件源码分享,pythonvim编写源码
- 如何让django接入新浪微博OAuth的方法,djangooauth,本篇p
- web.py页面执行计时,Python装饰器实现方法,web.pypython
- Python替换字符串空格的处理方法,python字符串,python如何
- 用python计算1到100的和源码详解,python100源码详解,用p
- 调用Bing桌面更换为本地桌面的python方法,bingpython,这是
- Python编写的俄罗斯方块游戏案例源码详解,PYQT4,pyth
- python采集文章中图片的方法源码,,这是收集的一篇关于
- Python tar、zip压缩文件操作方法,pythontar,python语言源码
- Python调用摄像头摄像并保存图片的方法源码,,用pytho
评论关闭