Python课程设计之学生信息管理系统

Posted 张牧之!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python课程设计之学生信息管理系统相关的知识,希望对你有一定的参考价值。

Python课程设计之学生信息管理系统

需求分析

系统设计


主函数设计



核心代码

def main():
    while True:
        menu()
        choice=int(input('请选择:'))
        if choice in [0,1,2,3,4,5,6,7]:
            if choice==0:
                answer=input('您确定要退出系统吗? y or 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() #统计学生总人数

#菜单
def menu():
    print('----------------学生信息管理系统----------------------')
    print('-------------------功能菜单-------------------------')
    print('\\t\\t\\t\\t 1.录入学生信息')
    print('\\t\\t\\t\\t 2.查找学生信息')
    print('\\t\\t\\t\\t 3.删除学生信息')
    print('\\t\\t\\t\\t 4.修改学生信息')
    print('\\t\\t\\t\\t 5.排序')
    print('\\t\\t\\t\\t 6.统计学生总人数')
    print('\\t\\t\\t\\t 7.显示所有学生信息')
    print('\\t\\t\\t\\t 0.退出系统')
    print('----------------------------------------------------')

运行效果

录入学生信息


核心代码

#录入学生信息
def insert():
    student_list=[]
    while True:
        id=input('请输入ID(如1001):')
        if not id:
            break
        name=input('请输入姓名:')
        if not name:
            break

        try:
            math=int(input('请输入数学成绩:'))
            english=int(input('请输入英语成绩:'))
            chinese=int(input('请输入语文成绩:'))
        except:
            print('输入无效,不是整数类型,请重新输入')
            continue
        #将录入的学生信息保存到字典中
        student='id':id,'name':name,'math':math,'english':english,'chinese':chinese
        #将学生信息添加到学生列表中
        student_list.append(student)
        answer=input('是否继续添加学生信息?y or n \\n')
        if answer=='y':
            continue
        else:
            break

    #调用save()函数
    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 delete():
    while True:
        student_id=input('请输入需要删除的学生的ID:')
        if student_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:
                            wfile.write(str(d)+'\\n')
                        else:
                            flag=True
                    if flag:
                        print(f'ID为student_id的学生信息已被删除!')
                    else:
                        print(f'没有找到ID为student_id的学生信息!')
            else:
                print('系统内无学生信息!')
                break
            show()  #删除信息后展示系统内学生信息
            answer=input('是否继续删除? y or n \\n')
            if answer=='y':
                continue
            else:
                break

运行效果

修改学生信息



核心代码

#修改学生信息
def 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:')
    with open(filename,'w',encoding='utf-8') as wfile:
        for item in student_old:
            d=dict(eval(item))
            if d['id']==student_id:
                print('找到学生信息,可以进行修改该学生的相关信息了!')
                while True:
                    try:
                        d['name']=input('请输入姓名:')
                        d['math'] = input('请输入数学成绩:')
                        d['english'] = input('请输入英语成绩:')
                        d['chinese'] = input('请输入语文成绩:')
                    except:
                        print('您的输入有误,请重新输入!')
                    else:
                        break
                wfile.write(str(d) + '\\n')
                print('修改成功!!!')
            else:
                wfile.write(str(d)  + '\\n')
        answer=input('是否需要继续修改其他学生信息? y or n \\n')
        if answer=='y':
            modify()

运行效果

查找学生信息


核心代码

#查找学生信息
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=dict(eval(item))
                    if id != '':
                        if d['id']==id:
                            student_query.append(d)
                    elif name != '':
                        if d['name']==name:
                            student_query.append(d)
            #显示查询结果
            show_student(student_query)
            #清空列表
            student_query.clear()
            answer=input('是否要继续查询? y or n \\n')
            if answer=='y':
                continue
            else:
                break
        else:
            print('暂未保存学生信息!')
            return

def show_student(lst):
    if len(lst)==0:
        print('没有查询到学生信息,无数据显示!!!')
        return

    #定义标题显示格式
    format_title=':^6\\t:^12\\t:^8\\t:^10\\t:^6\\t:^6'
    print(format_title.format('ID','姓名','数学成绩','英语成绩','语文成绩','总成绩'))
    #定义内容显示格式
    format_data=':^6\\t:^12\\t:^8\\t:^10\\t:^14\\t:^8'
    for item in lst:
        print(format_data.format(item.get('id'),
                                  item.get('name'),
                                  item.get('math'),
                                  item.get('english'),
                                  item.get('chinese'),
                                  int(item.get('math'))+int(item.get('english'))+int(item.get('chinese'))))

运行效果

统计学生总人数



核心代码

#统计学生总人数
def total():
    if os.path.exists(filename):
        with open(filename,'r',encoding='utf-8') as rfile:
            students=rfile.readlines()
            if students:
                print(f'一共有len(students)名学生!')
            else:
                print('还没有录入学生信息!')
    else:
        print('暂未保存数据信息.....')

运行效果

显示所有学生信息



核心代码

#展示所有学生信息
def show():
    student_lst=[]
    if os.path.exists(filename):
        with open(filename,'r',encoding='utf-8') as rfile:
            students=rfile.readlines()
            for item in students:
                student_lst.append(eval(item))
            if student_lst:
                show_student(student_lst)
    else:
        print('暂未保存过数据!!!!')

运行效果

排序模块



核心代码

#排序
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('请选择排序方式,1.升序  2.降序 :')
    if asc_or_desc=='1':
        asc_or_desc_bool=False
    elif asc_or_desc=='2':
        asc_or_desc_bool=True
    else:
        print('您的输入有误,请重新输入 :')
        sort()
    mode=input('请选择排序方式,1.按数学成绩排序  2.按英语成绩排序  3.按语文成绩排序  4.按总成绩排序 :')
    if mode=='1':
        student_new.sort(key=lambda x:int(x['math']),reverse=asc_or_desc_bool)
    elif mode=='2':
        student_new.sort(key=lambda x:int(x['english']),reverse=asc_or_desc_bool)
    elif mode=='3':
        student_new.sort(key=lambda x:int(x['chinese']),reverse=asc_or_desc_bool)
    elif mode=='4':
        student_new.sort(key=lambda x:int(x['math'])+int(x['english'])+int(x['chinese']),reverse=asc_or_desc_bool)
    else:
        print('您的输入有误,请重新输入:')
        sort()
    show_student(student_new)

运行效果

项目所有源码下载地址

点击下载

以上是关于Python课程设计之学生信息管理系统的主要内容,如果未能解决你的问题,请参考以下文章

计算机毕业设计之java+javaweb的学生信息管理系统

[课程设计] 学生成绩管理系统(Python版)

C语言程序设计

Python程序设计之 —— 简易学生信息管理系统

JAVA课程设计,设计一个学生基本信息管理系统,有没有大佬可以帮我,急!!!!

C#课程设计之学生教务管理系统