博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个简单的使用shelve模块的数据库应用程序
阅读量:6154 次
发布时间:2019-06-21

本文共 1736 字,大约阅读时间需要 5 分钟。

shelve模块的详细信息见Python库参考:

直接看代码:

1 # database.py 2 import sys, shelve 3  4 def store_person(db): 5     ''' 6     Query user for data and store it in the shelf object 7     ''' 8     pid = input('Enter unique ID number:') 9     person = {}10     person['name'] = input('Enter name:')11     person['age'] = input('Enter age:')12     person['phone'] = input('Enter phone:')13 14     db[pid] = person15 16 def lookup_person(db):17     '''18     Query user for ID and desired field, and fetch the corresponding data from the shelf obejct19     '''20     pid= input('Enter ID number:')21     field = input('What would you like to know?(choice option: name,age,phone):')22     field = field.strip().lower()23     print(field.capitalize()+':', db[pid][field])24 25 def print_help():26     print('The available commands are:')27     print('store   :   Stores information about a person')28     print('lookup  :   Looks up a person from ID number')29     print('quit    :   Save changes are exit')30     print('?       :   Prints this message')31 32 def enter_command():33     cmd = input('Enter command(? for help):')34     cmd = cmd.strip().lower()35     return cmd36 37 def main():38     database = shelve.open('D:\\database.dat')39     try:40         while True:41             cmd = enter_command()42             if cmd == 'store':43                 store_person(database)44             elif cmd == 'lookup':45                 lookup_person(database)46             elif cmd =='?':47                 print_help()48             elif cmd == 'quit':49                 return50     finally:51         database.close()52 53 if __name__ == '__main__':54     main()

简单交互过程:

在硬盘上产生的文件:

转载于:https://www.cnblogs.com/fortwo/archive/2013/04/17/3027351.html

你可能感兴趣的文章
[TC13761]Mutalisk
查看>>
while()
查看>>
常用限制input的方法
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
bulk
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>
【算法笔记】多线程斐波那契数列
查看>>
java8函数式编程实例
查看>>
jqgrid滚动条宽度/列显示不全问题
查看>>
在mac OS10.10下安装 cocoapods遇到的一些问题
查看>>
css技巧
查看>>
Tyvj 1728 普通平衡树
查看>>
javascript性能优化
查看>>
多路归并排序之败者树
查看>>
java连接MySql数据库
查看>>
转:Vue keep-alive实践总结
查看>>
深入python的set和dict
查看>>
C++ 11 lambda
查看>>