文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

学生信息系统(python实现)

2023-09-14 15:50

关注

#coding=utf-8import os.pathfilename='student.txt'def menm():#菜单界面    print('===========================学生管理系统===========================')    print('-----------------------------功能菜单-----------------------------')    print('\t\t\t\t\t\t1.录入学生信息')    print('\t\t\t\t\t\t2.查找学生信息')    print('\t\t\t\t\t\t3.删除学生信息')    print('\t\t\t\t\t\t4.修改学生信息')    print('\t\t\t\t\t\t5.排序学生信息')    print('\t\t\t\t\t\t6.统计学生人数')    print('\t\t\t\t\t\t7.显示学生信息')    print('\t\t\t\t\t\t0.退出')    print('----------------------------------------------------------------')def insert():#录入学生信息    student_list=[]#创建一个新列表    while True:        id=input('请输入ID(如1001):')        if not id:            break        name=input('请输入姓名:')        if not name:            break        try:            english=int(input('请输入英语成绩:'))            python=int(input('请输入Python成绩:'))            java=int(input('请输入Java成绩:'))        except:            print('输入无效,不是整数类型,请重新输入')            continue        #将录入的学生信息保存到字典里        student={'id':id,'name':name,'english':english,'python':python,'java':java}        #将学生信息添加到列表中        student_list.append(student)        answer=input('是否继续添加?y/n')        if answer=='y' or answer=='Y':            continue        else:            break    save(student_list)#将学生信息保存到磁盘文件    print('学生信息录入完毕')def save(lst):#保存学生信息    try:        stu_txt=open(filename,'a',encoding='utf-8')#打开文件,不存在则创建文件,存在则在末尾追加内容    except:        stu_txt=open(filename,'w',encoding='utf-8')#只写模式打开文件,文件存在覆盖原有内容    for item in lst:        stu_txt.write(str(item)+'\n')#将内容写进文件    stu_txt.close()#关闭文件def search():    student_query=[] #创建一个列表    while True:        id=''        name=''        if os.path.exists(filename):#文件存在            mode=input('按ID查找请输入1,按姓名查找输入2:')            if mode=='1':                id=input('输入学生ID:')            elif mode=='2':                name=input('输入学生姓名:')            else:                print('您的输入有误,请重新输入')                search()            with open(filename,'r',encoding='utf-8') as rfile:#打开文件,只读模式                student=rfile.readlines()#将内容逐行读入                for item in student:#将每个内容转换成字典存入d                    d=dict(eval(item))                    if id!='':                        if d['id']==id:student_query.append(d)#以id查找,相同id的存入列表                    elif name!='':                        if d['name']==name:student_query.append(d)#以姓名查找,相同名字存入列表            #显示查询结果            show_student(student_query)            #清空列表            student_query.clear()            answer=input('是否继续查询?y/n\n')            if answer=='y' or answer=='Y':                continue            else:                break        else:            print('暂未保存学生信息')            returndef show_student(lst):#展示学生信息    if len(lst)==0:#列表为空,说明没有学生信息        print('没有查询到学生信息,无法显示!!!')        return    #定义标题显示格式    format_title='{:^6}\t{:^12}\t{:^8}\t{:^10}\t{:^10}\t{:^8}'    print(format_title.format('ID','姓名','英语成绩','Python成绩','Java成绩','总成绩'))    #定义内容显示格式    format_data='{:^6}\t{:^12}\t{:^8}\t{:^10}\t{:^10}\t{:^8}'    for item in lst:#将列表中的内容逐行输出        print(format_data.format(item.get('id'),     item.get('name'),     item.get('english'),     item.get('python'),     item.get('java'),     int(item.get('english'))+int(item.get('python'))+int(item.get('java'))     ))def delete():#删除学生信息    while True:        student_id=input('请输入要删除的学生ID:')        if student_id!='':#ID不为空            if os.path.exists(filename):#文件存在                with open(filename,'r',encoding='utf-8') as file:                    student_old=file.readlines()#将内容逐行读入            else:                student_old=[]#文件不存在,则为空列表            flag=False            if student_old:#列表不为空                    with open(filename,'w',encoding='utf-8') as wfile:#以只写模式 打开文件夹 覆盖原先内容                        d={}#创建一个空字典                        for item in student_old:#将列表中的内容逐行读入d=dict(eval(item)) #将字符串转为字典if d['id']!=student_id:#若该id不为所查id,则重新写入    wfile.write(str(d)+'\n')else:#若id为所查id则不写入,且flag改为True    flag=True                        if flag:print(f'ID为{student_id}的学生信息已被删除')                        else:print(f'没有找到ID为{student_id}的学生信息')            else:                print('无学生信息')                break        answer=input('是否继续删除y/n')        if answer=='y' or answer=='Y':            continue        else:            breakdef modify():#修改学生信息    show()#先展示所有学生信息    if os.path.exists(filename):#文件存在        with open(filename,'r',encoding='utf-8',) as rfile:#以只读方式打开文件夹            student_old=rfile.readlines()#逐行读入文件    else:        return    student_id=input('请输入要修改的学生ID:')#需要修改的学生ID    with open(filename,'w',encoding='utf-8') as wfile:#以只写方式 打开文件夹 覆盖内容        for item in student_old:#将列表内容逐个读入            d=dict(eval(item))#转换成字典            if  d['id']==student_id:#该id为所要修改的学生id                print('找到学生信息,可以修改其相关信息!')                try:                    d['name']=input('请输入姓名:')                    d['english']=input('请输入英语成绩:')                    d['python']=input('请输入Python成绩:')                    d['java']=input('请输入java成绩:')                except:                        print('您输入有误,请重新输入!!!')                wfile.write(str(d)+'\n')#将其写入文件                print('修改成功!!!')            else:                wfile.write(str(d)+'\n')#id不为所要修改的学生id        answer=input('是否继续修改其它学生信息?y/n\n')        if answer=='y' or answer=='Y':            modify()def sort():#按成绩排序学生信息    show()#展示所有学生信息    if os.path.exists(filename):#文件存在        with open(filename,'r',encoding='utf-8') as rfile:#以只读模式 打开文件            student_list=rfile.readlines()#将内容逐行保存        student_new=[]#创建一个新列表        for item in student_list:#将列表内容逐个读入            d=dict(eval(item))#转为字典            student_new.append(d)#将其后接保存到新列表    else:        return    asc_or_desc=input('请选择(0.升序 1.降序):')    if asc_or_desc=='0':        asc_or_desc_bool=False#升序bool值为False    elif asc_or_desc=='1':        asc_or_desc_bool=True#降序bool值为True    else:        print('您的输入有误,请重新输入')        sort()    mode=input('请选择排序方式(1.按英语成绩排序 2.按Python成绩排序 3.按Java成绩排序 4.按总成绩排序)')    if mode=='1':        student_new.sort(key=lambda x:int(x['english']), reverse=asc_or_desc_bool)    elif mode=='2':        student_new.sort(key=lambda x: int(x['python']), reverse=asc_or_desc_bool)    elif mode=='3':        student_new.sort(key=lambda x: int(x['java']), reverse=asc_or_desc_bool)    elif mode=='4':        student_new.sort(key=lambda x: int(x['english'])+int(x['python'])+int(x['java']), reverse=asc_or_desc_bool)    else:        print('输入有误,请重新输入')        sort()    show_student(student_new)#展示排序后的学生信息def total():#统计学生个数    if os.path.exists(filename):#文件存在        with open(filename,'r',encoding='utf-8') as rfile:#以只读方式 打开文件夹            students=rfile.readlines()#逐行读入            if students:                print('一共有{}名学生'.format(len(students)))#用len内置函数            else:                print('还没有录入学生信息')    else:        print('暂未保存数据信息...')def show():    student_list=[]#创建空列表    if os.path.exists(filename):#文件存在        with open(filename,'r',encoding='utf-8') as rfile:#以只读模式 打开文件            students=rfile.readlines()#逐行读入        for item in students:#将列表内容逐个读入            student_list.append(eval(item))#后接入列表        if student_list:#列表不为空            show_student(student_list)#展示信息def main():#主函数    while True:      menm()      choice=int(input('请选择'))      if choice in [0,1,2,3,4,5,6,7]:        if choice==0:            answer=input('您确认要退出系统吗?y/n')            if answer=='y' or answer== 'Y':                print('谢谢您的使用!!!')                break            else:                continue        elif choice==1:            insert()        elif choice==2:            search()        elif choice==3:            delete()        elif choice==4:            modify()        elif choice==5:            sort()        elif choice==6:            total()        elif choice==7:            show()if __name__ == '__main__':    main()

来源地址:https://blog.csdn.net/qq_74156152/article/details/132794016

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯