成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Python課程設(shè)計(jì)之學(xué)生信息管理系統(tǒng)-創(chuàng)新互聯(lián)

Python課程設(shè)計(jì)之學(xué)生信息管理系統(tǒng)
  • 需求分析
  • 系統(tǒng)設(shè)計(jì)
  • 主函數(shù)設(shè)計(jì)
  • 錄入學(xué)生信息
  • 刪除學(xué)生信息
  • 修改學(xué)生信息
  • 查找學(xué)生信息
  • 統(tǒng)計(jì)學(xué)生總?cè)藬?shù)
  • 顯示所有學(xué)生信息
  • 排序模塊
  • 項(xiàng)目所有源碼下載地址

專注于為中小企業(yè)提供網(wǎng)站制作、成都做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)洪湖免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了1000+企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。需求分析

在這里插入圖片描述

系統(tǒng)設(shè)計(jì)

在這里插入圖片描述
在這里插入圖片描述

主函數(shù)設(shè)計(jì)

在這里插入圖片描述
在這里插入圖片描述
核心代碼

def main():
    while True:
        menu()
        choice=int(input('請(qǐng)選擇:'))
        if choice in [0,1,2,3,4,5,6,7]:
            if choice==0:
                answer=input('您確定要退出系統(tǒng)嗎? y or n')
                if answer=='y' or answer=='Y':
                    print('謝謝您的使用?。?!')
                    break # 退出系統(tǒng)
                else:
                    continue
            elif choice==1:
                insert() #錄入學(xué)生信息
            elif choice==2:
                search() #查找學(xué)生信息
            elif choice==3:
                delete() #刪除學(xué)生信息
            elif choice==4:
                modify() #修改學(xué)生信息
            elif choice==5:
                sort() #排序
            elif choice==6:
                total() #統(tǒng)計(jì)學(xué)生總?cè)藬?shù)
            elif choice==7:
                show() #統(tǒng)計(jì)學(xué)生總?cè)藬?shù)

#菜單
def menu():
    print('----------------學(xué)生信息管理系統(tǒng)----------------------')
    print('-------------------功能菜單-------------------------')
    print('\t\t\t\t 1.錄入學(xué)生信息')
    print('\t\t\t\t 2.查找學(xué)生信息')
    print('\t\t\t\t 3.刪除學(xué)生信息')
    print('\t\t\t\t 4.修改學(xué)生信息')
    print('\t\t\t\t 5.排序')
    print('\t\t\t\t 6.統(tǒng)計(jì)學(xué)生總?cè)藬?shù)')
    print('\t\t\t\t 7.顯示所有學(xué)生信息')
    print('\t\t\t\t 0.退出系統(tǒng)')
    print('----------------------------------------------------')

運(yùn)行效果
在這里插入圖片描述

錄入學(xué)生信息

在這里插入圖片描述
在這里插入圖片描述

核心代碼

#錄入學(xué)生信息
def insert():
    student_list=[]
    while True:
        id=input('請(qǐng)輸入ID(如1001):')
        if not id:
            break
        name=input('請(qǐng)輸入姓名:')
        if not name:
            break

        try:
            math=int(input('請(qǐng)輸入數(shù)學(xué)成績(jī):'))
            english=int(input('請(qǐng)輸入英語(yǔ)成績(jī):'))
            chinese=int(input('請(qǐng)輸入語(yǔ)文成績(jī):'))
        except:
            print('輸入無(wú)效,不是整數(shù)類型,請(qǐng)重新輸入')
            continue
        #將錄入的學(xué)生信息保存到字典中
        student={'id':id,'name':name,'math':math,'english':english,'chinese':chinese}
        #將學(xué)生信息添加到學(xué)生列表中
        student_list.append(student)
        answer=input('是否繼續(xù)添加學(xué)生信息?y or n \n')
        if answer=='y':
            continue
        else:
            break

    #調(diào)用save()函數(shù)
    save(student_list)
    print('學(xué)生信息錄入完畢?。?!')

#保存學(xué)生信息
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()

運(yùn)行效果
在這里插入圖片描述

刪除學(xué)生信息

在這里插入圖片描述
在這里插入圖片描述
核心代碼

#刪除學(xué)生信息
def delete():
    while True:
        student_id=input('請(qǐng)輸入需要?jiǎng)h除的學(xué)生的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  #標(biāo)記是否刪除
            if student_old:
                with open(filename,'w',encoding='utf-8') as wfile:
                    d={}   #定義空字典
                    for item in student_old:
                        d=dict(eval(item)) #將字符串轉(zhuǎn)成字典
                        if d['id'] != student_id:
                            wfile.write(str(d)+'\n')
                        else:
                            flag=True
                    if flag:
                        print(f'ID為{student_id}的學(xué)生信息已被刪除!')
                    else:
                        print(f'沒有找到ID為{student_id}的學(xué)生信息!')
            else:
                print('系統(tǒng)內(nèi)無(wú)學(xué)生信息!')
                break
            show()  #刪除信息后展示系統(tǒng)內(nèi)學(xué)生信息
            answer=input('是否繼續(xù)刪除? y or n \n')
            if answer=='y':
                continue
            else:
                break

運(yùn)行效果
在這里插入圖片描述

修改學(xué)生信息

在這里插入圖片描述
在這里插入圖片描述
核心代碼

#修改學(xué)生信息
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('請(qǐng)輸入要修改的學(xué)生的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('找到學(xué)生信息,可以進(jìn)行修改該學(xué)生的相關(guān)信息了!')
                while True:
                    try:
                        d['name']=input('請(qǐng)輸入姓名:')
                        d['math'] = input('請(qǐng)輸入數(shù)學(xué)成績(jī):')
                        d['english'] = input('請(qǐng)輸入英語(yǔ)成績(jī):')
                        d['chinese'] = input('請(qǐng)輸入語(yǔ)文成績(jī):')
                    except:
                        print('您的輸入有誤,請(qǐng)重新輸入!')
                    else:
                        break
                wfile.write(str(d) + '\n')
                print('修改成功!?。?)
            else:
                wfile.write(str(d)  + '\n')
        answer=input('是否需要繼續(xù)修改其他學(xué)生信息? y or n \n')
        if answer=='y':
            modify()

運(yùn)行效果
在這里插入圖片描述

查找學(xué)生信息

在這里插入圖片描述
在這里插入圖片描述

核心代碼

#查找學(xué)生信息
def search():
    student_query=[]
    while True:
        id=''
        name=''
        if os.path.exists(filename):
            mode=input('按ID查找請(qǐng)輸入1,按姓名查找請(qǐng)輸入2:')
            if mode=='1':
                id=input('請(qǐng)輸入學(xué)生ID:')
            elif mode=='2':
                name=input('請(qǐng)輸入學(xué)生姓名:')
            else:
                print('您的輸入有誤,請(qǐng)重新輸入!')
                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)
            #顯示查詢結(jié)果
            show_student(student_query)
            #清空列表
            student_query.clear()
            answer=input('是否要繼續(xù)查詢? y or n \n')
            if answer=='y':
                continue
            else:
                break
        else:
            print('暫未保存學(xué)生信息!')
            return

def show_student(lst):
    if len(lst)==0:
        print('沒有查詢到學(xué)生信息,無(wú)數(shù)據(jù)顯示?。?!')
        return

    #定義標(biāo)題顯示格式
    format_title='{:^6}\t{:^12}\t{:^8}\t{:^10}\t{:^6}\t{:^6}'
    print(format_title.format('ID','姓名','數(shù)學(xué)成績(jī)','英語(yǔ)成績(jī)','語(yǔ)文成績(jī)','總成績(jī)'))
    #定義內(nèi)容顯示格式
    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'))))

運(yùn)行效果
在這里插入圖片描述

統(tǒng)計(jì)學(xué)生總?cè)藬?shù)

在這里插入圖片描述
在這里插入圖片描述
核心代碼

#統(tǒng)計(jì)學(xué)生總?cè)藬?shù)
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)}名學(xué)生!')
            else:
                print('還沒有錄入學(xué)生信息!')
    else:
        print('暫未保存數(shù)據(jù)信息.....')

運(yùn)行效果
在這里插入圖片描述

顯示所有學(xué)生信息

在這里插入圖片描述
在這里插入圖片描述
核心代碼

#展示所有學(xué)生信息
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('暫未保存過(guò)數(shù)據(jù)?。。。?)

運(yùn)行效果
在這里插入圖片描述

排序模塊

在這里插入圖片描述
在這里插入圖片描述
核心代碼

#排序
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('請(qǐng)選擇排序方式,1.升序  2.降序 :')
    if asc_or_desc=='1':
        asc_or_desc_bool=False
    elif asc_or_desc=='2':
        asc_or_desc_bool=True
    else:
        print('您的輸入有誤,請(qǐng)重新輸入 :')
        sort()
    mode=input('請(qǐng)選擇排序方式,1.按數(shù)學(xué)成績(jī)排序  2.按英語(yǔ)成績(jī)排序  3.按語(yǔ)文成績(jī)排序  4.按總成績(jī)排序 :')
    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('您的輸入有誤,請(qǐng)重新輸入:')
        sort()
    show_student(student_new)

運(yùn)行效果
在這里插入圖片描述

項(xiàng)目所有源碼下載地址

點(diǎn)擊下載

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購(gòu),新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧

本文標(biāo)題:Python課程設(shè)計(jì)之學(xué)生信息管理系統(tǒng)-創(chuàng)新互聯(lián)
當(dāng)前網(wǎng)址:http://jinyejixie.com/article6/dipgig.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈手機(jī)網(wǎng)站建設(shè)、網(wǎng)站導(dǎo)航品牌網(wǎng)站建設(shè)、定制開發(fā)、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運(yùn)營(yíng)
柘城县| 邳州市| 德清县| 津南区| 沙坪坝区| 顺昌县| 鹤庆县| 韩城市| 鄂州市| 毕节市| 青田县| 土默特左旗| 名山县| 凤城市| 滦平县| 婺源县| 浮山县| 石屏县| 盱眙县| 沐川县| 贵南县| 永康市| 秦安县| 南靖县| 鄢陵县| 兴隆县| 镇江市| 大石桥市| 宜宾市| 隆昌县| 攀枝花市| 静海县| 海原县| 岫岩| 昭通市| 砚山县| 攀枝花市| 绵竹市| 五华县| 永川市| 抚远县|