• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

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

python 搞代码 4年前 (2022-01-09) 19次浏览 已收录 0个评论

这篇文章主要为大家详细介绍了Python编写电话薄实现增删改查功能的相关资料,感兴趣的朋友可以参考一下

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

import pickle#studentinfo = {'netboy': '15011038018',\#                'godboy': '15011235698'}studentinfo = {}FUNC_NUM = 5def write_file(value):    file = open('studen<mark>本文来源gaodaimacom搞#^代%!码&网(</mark>t_info.txt', 'wb')    file.truncate()    pickle.dump(value, file, True)    file.closedef 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编写电话薄实现增删改查相关文章请关注搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Python编写电话薄实现增删改查
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址