Home Article Practice 9-12

9-12

2021-03-18 17:25  views:563  source:小键人1027185    

stuInfos=[] # 用来保存学生的所有信息
def printMenu(): # 打印功能提示
print("="*20)
print(" 学生管理系统V2.0 ")
print("1.添加学生信息")
print("2.删除学生信息")
print("3.显示所有学生信息")
print("4.保存数据")
print("5.恢复数据")
print("0.退出系统")
print("="*20)
# 添加一个学生信息
def addStuInfo():
newNum = input("请输入新学生的学号:") # 提示并获取学生的学号
newName = input("请输入新学生的姓名:") # 提示并获取学生的姓名
newSex = input("请输入新学生的性别(男/女):") # 提示并获取学生的性别
newInfo = {} # 定义字典
# 赋值
newInfo['num'] = newNum
newInfo['name'] = newName
newInfo['sex'] = newSex
stuInfos.append(newInfo) # 将元素添加到列表中
# 删除一个学生信息
def delStuInfo(student):
del_num = input("请输入要删除的学生的学号:") # 提示并获取学生学号
for stu in student: # 遍历列表
if stu['num'] == del_num: # 判断是否与输入的学号相同
student.remove(stu) # 删除该学生信息
# 显示所有学生信息
def showStuInfo():
print("=" * 20)
print("学生的信息如下:")
print("=" * 20)
print("序号学号姓名 性别")
i = 1
# 遍历存储学生信息的列表,输出每个学生的详细信息
for tempInfo in stuInfos:
print("%d %s %s %s" % (i, tempInfo['num'],tempInfo['name'], tempInfo['sex']))
i += 1
# 保存到文件
def save_file():
with open('student.txt','w') as file:
file.write(str(stuInfos)) # 将字典转换为字符串后写入到文件
# 恢复数据
def recover_data():
global stuInfos
with open('student.txt','r') as file:
content = file.read()
stuInfos = eval(content) # 将数据转换为其原来的类型
# main函数控制整个程序的流程
def main():
while True:
printMenu() # 打印功能菜单
key = input("请输入功能对应的数字") # 获取用户输入
if key == '1': # 添加学生信息
addStuInfo()
elif key == '2': # 删除学生信息
delStuInfo(stuInfos)
elif key == '3': # 显示学生信息
showStuInfo()
elif key == '4':
save_file()
elif key == '5':
recover_data()
elif key == '0': # 退出循环
quit_con = input("确定退出吗?(Yes or No):")
if quit_con == 'Yes':
break
main() # 调用main函数



Disclaimer: The above articles are added by users themselves and are only for typing and communication purposes. They do not represent the views of this website, and this website does not assume any legal responsibility. This statement is hereby made! If there is any infringement of your rights, please contact us promptly to delete it.

字符:    改为:
去打字就可以设置个性皮肤啦!(O ^ ~ ^ O)