栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

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

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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

初学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程序设计有所帮助。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/33880.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号