Python实现简单的学生管理系统
生活随笔
收集整理的這篇文章主要介紹了
Python实现简单的学生管理系统
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
學生管理系統
student_infos = [] #打印功能提示 def print_menu():print("=" * 30)print("學生管理系統v1.0")print("1.添加學生信息")print("2.刪除學生信息")print("3.修改學生信息")print("4.顯示所有學生信息")print("0.退出系統")print("=" * 30) #添加一個學生信息 def add_info():#提示并獲取學生姓名new_name = input("請輸入新學生的姓名:")#提示并獲取學生性別new_sex = input("請輸入新學生的性別:")#提示并獲取學生手機號new_phone = input("請輸入新學生的手機號:")new_info = {}new_info["name"] = new_namenew_info["sex"] = new_sexnew_info["phone"] = new_phonestudent_infos.append(new_info) #刪除一個學生信息 def del_info(student):del_num = int(input("請輸入需要刪除的學生序號:")) - 1del student[del_num] #修改一個學生的信息 def modify_info():student_id = int(input("請輸入需要修改的學生學號:"))new_name = input("請輸入新學生的姓名:")new_sex = input("請輸入新學生的性別:")new_phone = int(input("請輸入新學生的手機號碼:"))student_infos[student_id-1]['name'] = new_namestudent_infos[student_id-1]['sex'] = new_sexstudent_infos[student_id-1]['phone'] = new_phone #顯示所有學生信息 def show_info():print('=' * 30)print("學生信息如下:")print('=' * 30)print("學號 姓名 性別 手機號碼")i = 1for temp in student_infos:print(("%d %s %s %s")% (i,temp['name'],temp['sex'],temp['phone']))i += 1 #定義一個主函數main,用于控制整個流程 def main():while True:print_menu()key = input("請輸入功能對應的數字:")if key == '1':add_info()elif key == '2':del_info(student_infos)elif key == '3':modify_info()elif key == '4':show_info()elif key == '0':quit_menu = input("請確認要退出系統嗎?(yes or no):")if quit_menu == 'yes':breakelse:print("輸入有誤,請重新輸入") main()總結
以上是生活随笔為你收集整理的Python实现简单的学生管理系统的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql orm c语言_【译】Sim
- 下一篇: java开发有日志存表的吗_Java日志