def charu(): location = eval(input("请输入需要插进第几行")) schoolnumber = input("请输入学生学号") name = input("请输入学生姓名") sex = input("请输入学生性别") mathgrade = eval(input("请输入学生数学成绩")) englishgrade = eval(input("请输入学生英语成绩")) pythongrade = eval(input("请输入学生python成绩")) totalinformation = str(schoolnumber) + '\t\t\t\t\t' + str(name) + '\t\t\t\t\t\t' + str(sex) + '\t\t\t\t\t' + str(mathgrade) + '\t\t\t\t\t\t' + str(englishgrade) + '\t\t\t\t\t\t' + str(pythongrade) + '\n' with open("student.txt", 'r', encoding='UTF-8') as file1: origin_line = file1.readlines() origin_line.insert(location-1, totalinformation) with open("student.txt", 'w', encoding='UTF-8') as file2: file2.writelines(origin_line) while True: print("{:=^70}".format("学生管理系统")) print("{:^70}".format("1.显示学生信息")) print("{:^70}".format("2.基本信息管理")) print("{:^70}".format("3.学生成绩管理")) print("{:^70}".format("4.考试成绩统计")) print("{:^70}".format("5.根据条件查询")) print("{:^70}".format("0.退出系统")) selection=eval(input("请输入1-5的数字")) if selection==1: print("学生信息如下") with open("student.txt",'r',encoding='UTF-8') as file:
时间: 2023-07-05 17:35:12 浏览: 81
c++大作业学生信息管理系统源代码.pdf
这段代码看起来像是一个简单的学生信息管理系统,其中包含了一些基本的操作,比如插入学生信息、显示学生信息等。不过我注意到这段代码中存在一些潜在的问题,比如输入的数据类型没有进行检查,存在可能会导致程序异常的情况。此外,如果要进行更复杂的操作,比如查询、统计等,可能需要更多的代码来实现。不知道你是否有相关的计划呢?
阅读全文