Python编写电话薄实现增删改查功能


Posted in Python onMay 07, 2016

初学python,写一个小程序练习一下。主要功能就是增删改查的一些功能。主要用到的技术:字典的使用,pickle的使用,io文件操作。代码如下:

import pickle

#studentinfo = {'netboy': '15011038018',\
#                'godboy': '15011235698'}
studentinfo = {}

FUNC_NUM = 5

def write_file(value):
    file = open('student_info.txt', 'wb')
    file.truncate()
    pickle.dump(value, file, True)
    file.close

def read_file():
    global studentinfo
    file = open('student_info.txt', 'rb')
    studentinfo = pickle.load(file)
    file.close()

def search_student():
    global studentinfo
    name = input('please input student\'s name:')
    if name in studentinfo:
        print('name:%s phone:%s' % (name, studentinfo[name]))
    else:
        print('has no this body')

def delete_student():
    global studentinfo
    name = input('please input student\'s name:')
    if name in studentinfo:
        studentinfo.pop(name)
        write_file(studentinfo)
    else:
        print('has no this body')

def add_student():
    global studentinfo
    name = input('please input student\'s name:')
    phone = input('please input phone:')
    studentinfo[name] = phone
    write_file(studentinfo)

def modifiy_student():
    global studentinfo
    name = input('please input student\'s name:')
    if name in studentinfo:
        phone = input('please input student\'s phone:')
        studentinfo[name] = phone
    else:
        print('has no this name')

def show_all():
    global studentinfo
    for key, value in studentinfo.items():
        print('name:' + key + 'phone:' + value)

func = {1 : search_student, \
    2 : delete_student, \
    3 : add_student, \
    4 : modifiy_student, \
    5 : show_all}

def menu():
    print('-----------------------------------------------');
    print('1 search student:')
    print('2 delete student:')
    print('3 add student:')
    print('4 modifiy student:')
    print('5 show all student')
    print('6 exit')
    print('-----------------------------------------------');

def init_data():
    global studentinfo
    file = open('student_info.txt', 'rb')
    studentinfo = pickle.load(file)
    #print(studentinfo)
    file.close()

init_data()
while True:
    menu()
    index = int(input())
    if index == FUNC_NUM + 1:
        exit()
    elif index < 1 or index > FUNC_NUM + 1:
        print('num is between 1-%d' % (FUNC_NUM + 1))
        continue
    #print(index)
    func[index]()

以上就是本文的全部内容,希望对大家学习Python程序设计有所帮助。

Python 相关文章推荐
从Python的源码浅要剖析Python的内存管理
Apr 16 Python
python创建关联数组(字典)的方法
May 04 Python
Python设计模式之命令模式简单示例
Jan 10 Python
Python分割训练集和测试集的方法示例
Sep 19 Python
flask框架json数据的拿取和返回操作示例
Nov 28 Python
python 实现生成均匀分布的点
Dec 05 Python
python读取dicom图像示例(SimpleITK和dicom包实现)
Jan 16 Python
pycharm中导入模块错误时提示Try to run this command from the system terminal
Mar 26 Python
python如何判断IP地址合法性
Apr 05 Python
keras打印loss对权重的导数方式
Jun 10 Python
Python环境管理virtualenv&amp;virtualenvwrapper的配置详解
Jul 01 Python
使用Python爬取Json数据的示例代码
Dec 07 Python
Python的dict字典结构操作方法学习笔记
May 07 #Python
Python 类与元类的深度挖掘 II【经验】
May 06 #Python
Python 类与元类的深度挖掘 I【经验】
May 06 #Python
Python 迭代器工具包【推荐】
May 06 #Python
Python中内建函数的简单用法说明
May 05 #Python
Python使用Paramiko模块编写脚本进行远程服务器操作
May 05 #Python
Python环境下搭建属于自己的pip源的教程
May 05 #Python
You might like
在PHP3中实现SESSION的功能(二)
2006/10/09 PHP
基于simple_html_dom的使用小结
2013/07/01 PHP
PHP原生函数一定好吗?
2014/12/08 PHP
php实现中文字符截取防乱码方法汇总
2015/04/29 PHP
ThinkPHP安装和设置
2015/07/27 PHP
使用XHProf查找PHP性能瓶颈的实例
2017/12/13 PHP
如何在一个页面显示多个百度地图
2013/04/07 Javascript
下拉列表select 由左边框移动到右边示例
2013/12/04 Javascript
用svg制作富有动态的tooltip
2015/07/17 Javascript
AngularJS的一些基本样式初窥
2015/07/27 Javascript
JavaScript设置表单上传时文件个数的方法
2015/08/11 Javascript
不得不分享的JavaScript常用方法函数集(上)
2015/12/23 Javascript
JS Array创建及concat()split()slice()的使用方法
2016/06/03 Javascript
jQuery针对input的class属性写了多个值情况下的选择方法
2016/06/03 Javascript
JS简单验证上传文件类型的方法
2017/04/17 Javascript
原生JS上传大文件显示进度条 php上传文件代码
2020/03/27 Javascript
vue实现图书管理demo详解
2017/10/17 Javascript
详解js的作用域、预解析机制
2018/02/05 Javascript
JS+php后台实现文件上传功能详解
2019/03/02 Javascript
Node Express用法详解【安装、使用、路由、中间件、模板引擎等】
2020/05/13 Javascript
基于js实现数组相邻元素上移下移
2020/05/19 Javascript
vue-router的hooks用法详解
2020/06/08 Javascript
Python面向对象程序设计类的多态用法详解
2019/04/12 Python
python的pytest框架之命令行参数详解(下)
2019/06/27 Python
Python使用itchat模块实现简单的微信控制电脑功能示例
2019/08/26 Python
Python3实现配置文件差异对比脚本
2019/11/18 Python
keras导入weights方式
2020/06/12 Python
Carolina Lemke Berlin澳大利亚官网:时尚太阳镜品牌
2019/09/17 全球购物
竞选学习委员演讲稿
2014/04/28 职场文书
质量提升方案
2014/06/16 职场文书
工程索赔意向书
2014/08/30 职场文书
走群众路线学习笔记
2014/11/06 职场文书
文明班级申报材料
2014/12/24 职场文书
python实现Nao机器人的单目测距
2021/09/04 Python
教你在 Java 中实现 Dijkstra 最短路算法的方法
2022/04/08 Java/Android
详解Flutter网络请求Dio库的使用及封装
2022/04/14 Java/Android