def show_student():    print(('*'*20).center(55))    print('1.添加学生信息'.center(50))    print('2.修改学生信息'.center(50))    print('3.删除学生信息'.center(50))    print('4.查询学生信息'.center(50))    print('5.退出信息系统'.center(50))    print('6.显示学生信息'.center(50))    print(('*'*20).center(55))

def add_student():    a_name = input('please input the student name : ')    a_sex = input('please input the the sex :')    a_height = input('please input the height:')    add_diclt = {'name':a_name ,'sex':a_sex ,'height':a_height}    sum_list.append(add_diclt)    return sum_listdef alter_student():    al1 = 0    alte = input('please input the alter the student message name :')    for al in range(len(sum_list)):        if sum_list[al]['name'] == alte :            print(sum_list[al])            al1 = al        else:            if al == len(sum_list)-1:                print('do not find the student name ')                exit()            continue

    a_name = input('please input the student name : ')    a_sex = input('please input the the sex :')    a_height = input('please input the height:')    add_diclt = {'name':a_name ,'sex':a_sex ,'height':a_height}    sum_list.insert(al1,add_diclt)    sum_list.pop(al1+1)    return sum_listdef del_student():    dll = 0    de_name = input('please input the del the student message name :')    for dl in range(len(sum_list)):        if sum_list[dl]['name'] == de_name:            print(sum_list[dl])            dll = dl        else:            if dl == len(sum_list)-1:                print('do not exit')                exit()            continue    sum_list.pop(dll)    print('删除成功!')    return sum_listdef find_student():    find_name = input('please input the find the student message name :')    for f1 in range(len(sum_list)):        if sum_list[f1]['name'] == find_name:            print(sum_list[f1])        else:            if f1 == len(sum_list)-1:                print('not find your input the name .please input continue')                find_student()            continue    return sum_list

def main_student():    while 1:     show_student()     s1 = input('please input the number:')     if s1 == '1':         print(add_student())     if s1 == '2':         print(alter_student())     if s1 == '3':         del_student()     if s1 == '4':         find_student()     if s1 == '5':         print('是否退出,如果退出输入Y,如果继续,输入N ')         e1 = input('<<<')         if e1.upper() == 'Y':             exit()         else:             show_student()     if s1 == '6':         print(sum_list)

sum_list = []       #总列表lis1 = ['deng','123','taibai','123456','alex','2019','Jing','2017']lis2 = []i = 3while i > 0:    username = input('please input the username :')    password = input('please input the password : ')    if username in lis1[0::2] and password in lis1[1::2] :        print('验证成功...')        lis2.append(username)        lis2.append(password)        break    else:        i -= 1        print('验证失败,请再次尝试,您还有'+str(i)+'次机会')        continueif i == 0:    exit()print('欢迎{name}进入学生管理系统'.format(name = lis2[0]))main_student()

学生管理系统 Python语言的更多相关文章

  1. Python连接SqlServer+GUI嵌入式——学生管理系统1.0

    学生管理系统1.0 1.建学生数据库 2.数据库嵌入高级语言(Python) 3.界面设计 简化思路: 1.先通过SqlServer2012建立学生数据库,包括账号.密码,姓名.选课等信息 2.运用P ...

  2. python学生管理系统

    import osimport re #获取本机用户名,构建student.txt文件名创建在左面import getpassusername=getpass.getuser()print(" ...

  3. 学生管理系统-火车订票系统 c语言课程设计

    概要: C 语言课程设计一---学生管理系统 使使用 C 语言实现学生管理系统.系统实现对学生的基本信息和考试成绩的 管理.采用终端命令界面,作为系统的输入输出界面.采用文件作为信息存储介质. 功能描 ...

  4. #006 C语言大作业学生管理系统第三天

    还差最后两部分 读取文件 恢复删除的学生信息 先学会处理文件的 知识点,再继续跟着视频做这个作业. 应该明天周六能把视频里手把手教的学生管理系统敲完 第二周尽量自己能完成C语言课本最后面那道学生管理系 ...

  5. python开发的学生管理系统

    python开发的学生管理系统(基础版) #定义一个函数,显示可以使用的功能列表给用户 def showInfo(): print("-"*30) print(" 学生管 ...

  6. 用python实现简易学生管理系统

    以前用C++和Java写过学生管理系统,也想用Python试试,果然“人生苦短,我用Python”.用Python写的更加简洁,实现雏形也就不到100行代码. 下面上代码 #!/usr/bin/pyt ...

  7. c语言之学生管理系统

    0x00 学生管理系统 说到学生管理系统,对于每一个初学c语言的人都是一道不得不过的砍.不过,学习c,我觉得每个人都应该写一个学生管理系统,至于为什么,我想倘若连一个学生管理系统都写不好,哪么他的c是 ...

  8. 如何用python做出老师看了都给满分的GUI学生管理系统毕设

    序 言 哈喽大家好鸭!我是小熊猫 最近有什么有趣的事情发生吗?快来说给我听听( •̀ ω •́ )✧表弟大学快毕业了,学了一个学期Python居然还不会写学生管理系统,真的给我丢脸啊,教他又不肯学,还 ...

  9. 学生管理系统(C语言简单实现)

    仅供借鉴.仅供借鉴.仅供借鉴(整理了一下大一C语言每个章节的练习题.没得题目.只有程序了) 文章目录 1 .实训名称 2.实训目的及要求 3. 源码 4.实验小结 1 .实训名称 实训12:文件 2. ...

随机推荐

  1. supervisor指南

    1 安装 yum install -y supervisor 如果提示没有这个安装包,则需要添加epel源 wget -O /etc/yum.repos.d/epel.repo http://mirr ...

  2. html5教程 《实用技巧》—让你的网站变成响应式的3个简单步骤

    如今,一个网站只在桌面屏幕上好看是远远不够的,同时也要在平板电脑和智能手机中能够良好呈现.响应式的网站是指它能够适应客户端的屏幕尺寸,自动响应客户端尺寸变化.在这篇文章中,我将向您展示如何通过3个简单 ...

  3. codeforces 213div(2) 365 A.Good Number 365 B.The Fibonacci Segment

    #include <stdio.h> #include <string.h> bool vis[11]; int n, k; bool judge(int x) { memse ...

  4. nginx lua集成kafka

    NGINX lua集成kafka 第一步:进入opresty目录 [root@node03 openresty]# cd /export/servers/openresty/ [root@node03 ...

  5. Struts完成用户新增操作

    点击新增客户出现该页面并完成前后台交互 代码逻辑分析: jsp 页面部分代码 <TABLE id=table_1 style="DISPLAY: none" cellSpac ...

  6. Centos7 搭建owncloud云存储

    Centos7 搭建owncloud云存储 首先准备必要的软件和资料. 这里我已经整理好了: 百度云共享 不过最好还是自己去官网上下.这里只不过是提供了快捷方式. owncloud官网:https:/ ...

  7. HTML 第5章CSS3美化网页元素

    <span>标签: <span>标签是用来组合HTML文档中的行内元素,它没有固定的格式表示. 字体样式: 属性名                               ...

  8. v-text,v-html等区别

    首先我们知道vue中有很多自定义指令,以v- 开头,例如:v-text,v-bind,v-model, v-if,等 在这些指令中,部分指令之间是很容易被混淆,所以今天决定自己总结一下以下几个相似指令 ...

  9. Spring aop 影响本地事务的回滚总结

    1  @Before   不会,因为还没执行到service的业务逻辑 2  @ After    默认情况下,报错会影响事务回滚., 当设置@Order属性并设置值优先级大小, 即使报错也不会回滚了 ...

  10. (15)ASP.NET Core Web主机(IWebHostBuilder)

    1.前言 ASP.NET Core应用程序可以配置和启动主机(Host).主机负责应用程序启动和生存期管理,配置服务器和请求处理管道.主机还可以设置日志记录.依赖关系注入和配置.而host主机又包括W ...