python:shelve模块

Posted CanSun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:shelve模块相关的知识,希望对你有一定的参考价值。

#!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模块的主要内容,如果未能解决你的问题,请参考以下文章

python shelve模块

python shelve模块

python3--shelve 模块

python:shelve模块

python shelve模块

python shelve ... bsddb deprecated ... 如何让 shelve 使用另一个数据库?