您好,登錄后才能下訂單哦!
本文實例為大家分享了python學生信息管理系統的具體代碼,供大家參考,具體內容如下
""" 程序名稱:學生信息管理系統 版本信息:0.1 開發者:飛宇 開始時間:2018.3.23 19:45 版本更新時間:2018.4.2 23:08 格式:IPO OOP面向對象 """ # 學生類 class Student: def __init__(self, stuId, name, age, sex, dept, nation): self.stuId = stuId self.name = name self.age = age self.sex = sex self.dept = dept self.nation = nation def studentoop(self): pass # 管理系統類 class Sys: def __init__(self): pass # 展示系統菜單 def show_menu(self): print("=" * 56) print("") print(" 學生信息管理系統 v1.0") print("") print(" 1:添加用戶信息") print(" 2:查詢用戶信息") print(" 3:修改用戶信息") print(" 4:刪除用戶信息") print(" 5:顯示用戶信息") print(" 0:退出系統") print("") print("=" * 56) # 輸入學生菜單 def getinfo(self): global new_stuId global new_name global new_age global new_sex global new_dept global new_nation new_stuId = input("請輸入學號:") new_name = input("請輸入名字:") new_age = input("請輸入年齡:") new_sex = input("請輸入性別:") new_dept = input("請輸入專業:") new_nation = input("請輸入民族:") # 添加學生信息 def add_stus(self): #調用getinfo方法 self.getinfo() #以ID為Key,將新輸入的信息賦值給Student類 students[new_stuId] = Student(new_stuId, new_name, new_age, new_sex, new_dept, new_nation) # 打印添加的學生信息 print("學號:%s" % students[new_stuId].stuId, "姓名:%s" % students[new_stuId].name, "年齡:%s" % students[new_stuId].age, "性別:%s" % students[new_stuId].sex, "專業:%s" % students[new_stuId].dept, "民族:%s" % students[new_stuId].nation) print("=" * 56) # 查詢學生信息 def find_stus(self): find_nameId = input("請輸入要查的學號") if find_nameId in students.keys(): print("學號:%s\t名字:%s\t年齡:%s\t性別:%s\t名字:%s\t民族:%s" % (students[new_stuId].stuId, students[new_stuId].name, students[new_stuId].age, students[new_stuId].sex, students[new_stuId].dept, students[new_stuId].nation)) else: print("查無此人") print("=" * 56) # 修改學生信息 def alter_stus(self): alterId = input("請輸入你要修改學生的學號:") self.getinfo() # 當字典中Key相同時,覆蓋掉以前的key值 if alterId in students.keys(): students[new_stuId] = Student(new_stuId, new_name, new_age, new_sex, new_dept, new_nation) del students[alterId] else: print("查無此人") print("=" * 56) # 刪除學生信息 def del_stus(self): cut_nameID = input("請輸入要刪除的學號:") if cut_nameID in students.keys(): del students[cut_nameID] else: print("查無此人") print("=" * 56) # 顯示學生信息 def show_stus(self): for new_stuId in students: print("學號:%s\t名字:%s\t年齡:%s\t性別:%s\t名字:%s\t民族:%s" % (students[new_stuId].stuId, students[new_stuId].name, students[new_stuId].age, students[new_stuId].sex, students[new_stuId].dept, students[new_stuId].nation)) print("=" * 56) # 退出 def exit_stus(self): print("歡迎下次使用") exit() # 創建系統對象 sys = Sys() # 定義一個容器來存儲學生信息 students = {} sys.show_menu() while True: choice = int(input("請選擇功能:")) if choice == 1: sys.add_stus() elif choice == 2: sys.find_stus() elif choice == 3: sys.alter_stus() elif choice == 4: sys.del_stus() elif choice == 5: sys.show_stus() elif choice == 0: sys.exit_stus() else: print("您輸入有誤,請重新輸入")
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。