Python中shelve模組的簡單介紹(附範例)

不言
發布: 2018-09-25 17:15:39
原創
3321 人瀏覽過

本篇文章帶給大家的內容是關於Python中shelve模組的簡單介紹(附範例),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

shelve:物件持久化的保存的模組,將物件儲存到檔案裡 (預設的資料儲存檔案為二進位),可持久化任何pickle可支援的Python資料格式

shelve 中唯一的方法:

shelve.open(filename,flag = 'c', protocol = None , writebake = False)

filename #關聯的檔案路徑
flag  'r'   :以唯讀模式開啟一個已經存在的資料儲存檔案
 ' w'  :以讀寫模式開啟一個已經存在的資料儲存檔案
# 'c'   :(預設)以讀寫模式開啟資料儲存文件,如果不存在則建立
 'n'   :總是以讀寫模式開啟並且建立新的空白資料儲存檔案
protocol 表示序列化資料所使用的協議,預設為None(pickle v3)
writebake 表示是否開啟回寫功能

##1.檔案可以像字典一樣儲存key - value (註:key 必須為字串,value 可以是任何資料型別)

import shelve
date = shelve.open('family.txt')         # Python的自处理系统会自动生成三个文件
date['father'] = 'Presly'                        # 默认为创建并且写入“c”
date['mather'] = 'Vera'
date['baby'] = [123, ]
date.close()
m = shelve.open('family.txt', falg= 'r', writebake=True)          # 当writebake设置为True时,文件里才能直接添加
print(m['baby']) 
m['baby'].append(345)
print(m['father'])
print('-------------') 
for key, value in m.items():           # 以字典的格式 
    print(key, ':', value) 
m.close()
登入後複製
[123]
Presly
-------------
father : Presly
mather : Vera
baby : [123,345]
登入後複製

2.  #shelve 的序列化

  • 可以把類別的資料序列化,然後再反序列化出元素

  • 與pickle不同的是,pickle只能按照dump順序,load出元素,而shelve可以直接重複拿出不同或相同存進檔案的key值,

3.  shelve 可以進行類似函式庫,增,刪,改,查

import shelve


def store_information(database):
    info = {}
    ID = input('Enter the ID number:')
    info['name'] = input('Enter the name:')         # 将name ,age , phone 存入字典info里
    info['age'] = input('Enter the age:')
    info['phone'] = input('Enter the phone:')
    database[ID] = info                            # 用ID : info 存入 database文件


def lookup_information(database):
    ID = input('Enter the ID:')
    field = input('What would you like to know?(name,age,phone)')
    field = field.strip().lower()
    print(database[ID][field])              # 通过输入的ID与 field 直接打印结果


def print_help():
    print('Please enter the help command:')
    print('store  :store informatinon to database')
    print('lookup :look up information by numID')
    print('quit   :save information and quit')
    print('?      :print help command')


def enter_command():
    cmd = input('Enter command (? for help)')
    cmd = cmd.strip().lower()
    return cmd


def main():
    database = shelve.open('db.dat')
    try:
        while True:
            cmd = enter_command()
            if cmd == 'store':
                store_information(database)           # 当if函数结束,自动跳转到cmd = enter_command()行
            elif cmd == 'lookup':
                lookup_information(database)
            elif cmd == '?':
                print_help()
            elif cmd == 'quit':
                return                            # 跳出while循环
    finally:
        database.close()


if __name__ == '__main__': main()
登入後複製

以上是Python中shelve模組的簡單介紹(附範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板