码迷,mamicode.com
首页 > 编程语言 > 详细

python:shelve模块

时间:2018-01-02 23:36:10      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:pos   bin   test   shel   def   列表   utf-8   log   div   

#!usr/bin/env python
# -*- coding:utf-8 -*-

__author__ = "Samson"
import shelve

d = shelve.open(‘shelve_test‘) # 打开一个文件

info = {"age":22,"job":"it"}

class Test(object):
def __init__(self, n):
self.n = n


t = Test(123)
t2 = Test(123334)

name = ["alex", "rain", "test"]
d["name"] = name # 持久化列表
d["info"] = info #持久化dict
d["t1"] = t # 持久化类
d["t2"] = t2

print(d.get("name"))#获取文件中的特定内容
d.close()

python:shelve模块

标签:pos   bin   test   shel   def   列表   utf-8   log   div   

原文地址:https://www.cnblogs.com/cansun/p/8179130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!