python版学生管理系统


Posted in Python onJanuary 10, 2018

写一个学生管理系统,最好用python。

我都没学过python呢,只好开始临时抱佛脚,再到网上找找有没有例子看看,下面是我参照另一个博主写的,中间有一些和我不能融合的错误,我已经解决了。

input("\n\nPress the enter key to exit.")


def functionList(): # 定义功能菜单
 print("---------请输入序号选择您要得功能---------")
 print("")
 print("-" * 14 + "1.查看学生信息" + "-" * 14)
 print("-" * 42)
 print("-" * 14 + "2.增加学生信息" + "-" * 14)
 print("-" * 42)
 print("-" * 14 + "3.删除学生信息" + "-" * 14)
 print("-" * 42)
 print("-" * 14 + "4.修改学生信息" + "-" * 14)
 print("-" * 42)
 print("-" * 14 + "5.查找系统学生" + "-" * 14)
 print("-" * 42)
 print("-" * 14 + "6.返回到上一级" + "-" * 14)
 print("-" * 42)
 print("-" * 14 + "7.退出学生系统" + "-" * 14)
 print("")


def functionList2(): # 定义简单版功能菜单

 print("---1:查看----2:增加-----3:删除----4:修改----")
 print("-------5:查找-------6:返回------7:退出------")


def sexInputDebug(sexInput): # 检查性别输入是否正确
 if len(sexInput) == 1 and (sexInput.lower() == "m" or sexInput.lower() == "f"):
 return True
 else:
 return False


def ageInputDebug(ageInput): # 检查年龄输入是否正确
 if len(ageInput) == 2 and ageInput.isdigit() == True:
 return True
 else:
 return False


def IDInputDebug(IDInput): # 检查学号输入是否正确
 if len(IDInput) == 8 and IDInput.isdigit() == True:
 return True
 else:
 return False


def nameListFunction(): # 显示单个学生姓名信息
 nameList = []
 for i in range(len(studentList)):
 if studentList[i]["name"] not in nameList:
  nameList.append(studentList[i]["name"])
 return nameList


def findNameLocation(studentname): # 通过名字找到学生位置
 for j in range(len(studentList)):
 if studentList[j]["name"] == studentname:
  return j


def listFunction(): # 定义显示现有学生信息函数
 for i in range(len(studentList)):
 studentInfo = studentList[i]
 print("姓名:%s--性别:%s--年龄:%s--学号:%s--备注:%s--" % (
 studentInfo["name"], studentInfo["sex"], studentInfo["age"], studentInfo["studentID"], studentInfo["extra"]))
 print("")


def addFunction(): # 定义增加学生函数

 while True:
 numInput =input("-----修改已经存在的学生备注请输入1\n-----------增加一个新的学生请输入2:")
 if numInput == "2":
  while True:
  nameNoExistAdd = input("请输入您要增加的名字:")

  nameList = nameListFunction()
  if nameNoExistAdd in nameList:
   print("%s在学生管理系统中已经存在" % nameNoExistAdd)
   print("")

  else:
   newStudent = {}
   newStudent["name"] = nameNoExistAdd
   while True:
   sexInput = input("----请输入%s的性别--f:man--m:women:" % nameNoExistAdd)
   if sexInputDebug(sexInput) == True:
    newStudent["sex"] = sexInput
    break
   else:
    print("输入有误,请重新输入!")
   while True:
   ageInput = input("-------请输入%s2位数字表示的年龄:" % nameNoExistAdd)
   if ageInputDebug(ageInput) == True:
    newStudent["age"] = ageInput
    break
   else:
    print("输入有误,请重新输入!")
   while True:
   IDInput = input("----------请输入%s的8位学号:" % nameNoExistAdd)
   if IDInputDebug(IDInput) == True:
    newStudent["studentID"] = IDInput
    break
   else:
    print("输入有误,请重新输入!")
   extraInput = input("----------请输入%s的备注:" % nameNoExistAdd)
   newStudent["extra"] = extraInput
   studentList.append(newStudent)
   print("--------------%s已经添加到学生管理系统" % nameNoExistAdd)
   print("")
   print("姓名:%s--性别:%s--年龄:%s--学号:%s--备注:%s--" % (
   newStudent["name"], newStudent["sex"], newStudent["age"], newStudent["studentID"],
   newStudent["extra"]))
   break
  break
 elif numInput == "1":
  while True:
  nameExistAdd = input("------请输入您要修改备注的学生的名字:")
  nameList = nameListFunction()
  if nameExistAdd in nameList:
   extraExistAdd = input("-----------------请输入您要添加的备注:")
   j = findNameLocation(nameExistAdd)
   studentList[j]["extra"] = extraExistAdd
   print("---------------备注已经添加--------------")
   print("")
   print("姓名:%s--性别:%s--年龄:%s--学号:%s--备注:%s--" % (
   studentList[j]["name"], studentList[j]["sex"], studentList[j]["age"], studentList[j]["studentID"],
   studentList[j]["extra"]))
   print("")
   break
  else:
   print("-----------------您输入的姓名不存在")
  break

 else:
  print("----------------您输入的信息不正确")


def delFunction(): # 定义删除学生的函数
 while True:
 nameDel = input("---------------请输入您要删除的名字:")
 studentNameList = nameListFunction()
 if nameDel in studentNameList:
  j = findNameLocation(nameDel)

  del studentList[j]
  print("-------------%s已经从学生管理系统中删除" % nameDel)
  print("")
  break
 else:
  print("------------------您要删除的名字不存在!")


def modifiFunction(): # 定义修改学生的函数
 while True:
 nameModifi = input("----------------请输入要修改的名字:")
 studentNameList = nameListFunction()
 if nameModifi in studentNameList:
  print("------------请选择要修改的内容-----------")
  print("--------------1:修改姓名---------------")
  print("--------------2:修改性别---------------")
  print("--------------3:修改年龄---------------")
  print("--------------4:修改学号---------------")
  print("--------------5:修改备注---------------")

  while True:
  choiceInput = input("请输入:")
  if choiceInput == "1":
   newNameInput = input("----------请输入新的姓名:")
   j = findNameLocation(nameModifi)
   studentList[j]["name"] = newNameInput
   print("------------姓名已经更新------------")
   print("")
   break
  elif choiceInput == "2":
   while True:
   newSexInput = input("----请输入新的性别--f:man--m:women---")
   if sexInputDebug(newSexInput) == True:
    j = findNameLocation(nameModifi)
    studentList[j]["sex"] = newSexInput
    print("-------------性别已经更新-------------")
    print("")
    break
   else:
    print("---------输入有误,请重新输入!---------")
   break
  elif choiceInput == "3":
   while True:
   newAgeInput = input("----------请输入新的年龄:")
   if ageInputDebug(newAgeInput) == True:
    j = findNameLocation(nameModifi)
    studentList[j]["age"] = newAgeInput
    print("------------年龄已经更新------------")
    print("")
    break
   else:
    print("----------入有误,请重新输入!-------")
   break
  elif choiceInput == "4":
   while True:
   newIDInput = input("----------请输入新的学号:")
   if IDInputDebug(newIDInput) == True:
    j = findNameLocation(nameModifi)
    studentList[j]["studentID"] = newIDInput
    print("------------学号已经更新------------")
    print("")
    break
   else:
    print("----------入有误,请重新输入!-------")
   break
  elif choiceInput == "5":
   newExtraInput = input("----------请输入新的备注:")
   j = findNameLocation(nameModifi)
   studentList[j]["extra"] = newExtraInput
   print("------------备注已经更新------------")
   print("")
   break
  else:
   print("---------输入有误,请重新输入!-------")
   print("")
  break
 else:
  print("-----------------您输入的名字不存在!")
  print("")


def searchFunction(): # 定义搜索学生的函数
 nameSearch = input("-------------请输入要查找的名字:")
 print("")
 nameList = nameListFunction()
 if nameSearch in nameList:
 print("-----------------%s在学生管理系统中-------------------" % nameSearch)
 print("")
 j = findNameLocation(nameSearch)
 print("姓名:%s--性别:%s--年龄:%s--学号:%s--备注:%s--" % (
 studentList[j]["name"], studentList[j]["sex"], studentList[j]["age"], studentList[j]["studenID"],
 studentList[j]["extra"]))
 print("")
 else:
 print("----------------%s不在学生管理系统中-----------------" % nameSearch)
 print("")
 # 默认学生信息系统内容


studentList = [{"name": "Frank", "sex": "f", "age": 33, "studentID": "312312", "extra": ""},
  {"name": "Jane", "sex": "m", "age": 45, "studentID": "324235", "extra": ""}]

# 函数主体
print("-" * 11 + "欢迎来到学生管理系统" + "-" * 11)
print("")
print("")
functionList()
while True: # 进入循环,根据序号选择操作
 userInput = input("----------------请输入您要选择的功能序号:")
 print("")

 if userInput == "1": # 显示现有学生和返回
 listFunction()
 functionList2()
 continue
 elif userInput == "2": # 使用增加函数和返回
 addFunction()
 functionList2()
 continue
 elif userInput == "3": # 使用删除函数和返回
 delFunction()
 functionList2()
 continue
 elif userInput == "4": # 使用修改函数和返回
 modifiFunction()
 functionList2()
 continue
 elif userInput == "5": # 使用搜索函数和返回
 searchFunction()
 functionList2()
 continue
 elif userInput == "6": # 返回功能列表
 functionList()
 continue
 elif userInput == "7": # 退出
 break
 else:
 print("----------输入有误,请重新输入!----------")

以下就是运行后的结果:

python版学生管理系统

python版学生管理系统

具体内容实现我还要研究研究,不过这个代码亲测已经可以运行了,小伙伴可以copy了。

过程中遇到的问题:

1. raw_input:我用的是3x的pyCharm,和2x的区别就在于不识别 raw_input,而要使用input。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python解析xml中dom元素的方法
Mar 12 Python
python安装mysql-python简明笔记(ubuntu环境)
Jun 25 Python
python如何获取服务器硬件信息
May 11 Python
Django 生成登陆验证码代码分享
Dec 12 Python
python实现人脸识别经典算法(一) 特征脸法
Mar 13 Python
Python 创建空的list,以及append用法讲解
May 04 Python
浅析Python函数式编程
Oct 06 Python
详解Python Matplotlib解决绘图X轴值不按数组排序问题
Aug 05 Python
关于Python解包知识点总结
May 05 Python
python中的class_static的@classmethod的巧妙用法
Jun 22 Python
Python django中如何使用restful框架
Jun 23 Python
Python 数据可视化工具 Pyecharts 安装及应用
Apr 20 Python
python实现用户管理系统
Jan 10 #Python
python的Tqdm模块的使用
Jan 10 #Python
python3.6 实现AES加密的示例(pyCryptodome)
Jan 10 #Python
Python设计模式之MVC模式简单示例
Jan 10 #Python
Python设计模式之命令模式简单示例
Jan 10 #Python
Python爬虫实例_利用百度地图API批量获取城市所有的POI点
Jan 10 #Python
Python之多线程爬虫抓取网页图片的示例代码
Jan 10 #Python
You might like
通过curl模拟post和get方式提交的表单类
2014/04/23 PHP
PHP实现的交通银行网银在线支付接口ECSHOP插件和使用例子
2014/05/10 PHP
在PHP中使用X-SendFile头让文件下载更快
2014/06/01 PHP
PHP实现扎金花游戏之大小比赛的方法
2015/03/10 PHP
学习php设计模式 php实现原型模式(prototype)
2015/12/07 PHP
PHP的Yii框架中行为的定义与绑定方法讲解
2016/03/18 PHP
Zend Framework实现多文件上传功能实例
2016/03/21 PHP
基于php判断客户端类型
2016/10/14 PHP
JavaScript中的类(Class)详细介绍
2014/12/30 Javascript
四种参数传递的形式——URL,超链接,js,form表单
2015/07/24 Javascript
Bootstrap Chart组件使用教程
2016/04/28 Javascript
全面解析DOM操作和jQuery实现选项移动操作代码分享
2016/06/07 Javascript
Javascript for in的缺陷总结
2017/02/03 Javascript
js实现添加删除表格(两种方法)
2017/04/27 Javascript
vue-cli启动本地服务局域网不能访问的原因分析
2018/01/22 Javascript
微信小程序将字符串生成二维码图片的操作方法
2018/07/17 Javascript
axios取消请求的实践记录分享
2018/09/26 Javascript
[57:16]2014 DOTA2华西杯精英邀请赛 5 25 LGD VS VG第二场
2014/05/26 DOTA
python网络编程学习笔记(10):webpy框架
2014/06/09 Python
python写入中英文字符串到文件的方法
2015/05/06 Python
Python numpy中矩阵的基本用法汇总
2019/02/12 Python
详解Python利用random生成一个列表内的随机数
2019/08/21 Python
基于Python爬取爱奇艺资源过程解析
2020/03/02 Python
Python Handler处理器和自定义Opener原理详解
2020/03/05 Python
pyqt5中动画的使用详解
2020/04/01 Python
Python 私有属性和私有方法应用场景分析
2020/06/19 Python
python能否java成为主流语言吗
2020/06/22 Python
解析Tensorflow之MNIST的使用
2020/06/30 Python
Champion澳大利亚官网:美国冠军运动服装
2018/05/07 全球购物
乐高奥地利官方商店:LEGO Shop AT
2019/07/16 全球购物
实习护士自我鉴定
2013/10/13 职场文书
办护照工作证明
2014/10/01 职场文书
坎儿井导游词
2015/02/09 职场文书
2015年秋季新学期寄语
2015/03/25 职场文书
SQLServer2019 数据库的基本使用之图形化界面操作的实现
2021/04/08 SQL Server
使用goaccess分析nginx日志的详细方法
2021/07/09 Servers