2018-09-01-day10作业-学生信息管理系统

1.主界面模块

"""__author__=wuliang"""
from time import sleep
import logout
import login
import student
import file_operation
'''
主界面模块,也是被程序的入口
'''
def start_inter():
    '''
    系统初始化的主界面
    :return:
    '''
    print('='*30)
    print('+',end='')
    print(' '*7,end='')
    print('学生信息管理系统',end='')
    print(' '*5,end='')
    print('+')

    print('+', end='')
    print(' '*10,end='')
    print('1.登录',end='')
    print(' '*10,end='')
    print('+')

    print('+', end='')
    print(' ' * 10, end='')
    print('2.注册', end='')
    print(' ' * 10, end='')
    print('+')

    print('+', end='')
    print(' ' * 10, end='')
    print('3.退出', end='')
    print(' ' * 10, end='')
    print('+')
    print("="*30)

    operation=input('请输入你的选择:')
    fun_operation(operation)

def main_operation(username):
    '''
    系统操作主界面
    :return:
    '''
    operation=0 #设定operation初始值0,什么也不做
    while operation!=6:
        print('=' * 30)
        print('+', end='')
        print(' ' * 7, end='')
        print('学生信息管理系统', end='')
        print(' ' * 8, end='')
        print('+')

        print('+', end='')
        print(' ' * 10, end='')
        print('1.查看学生', end='')
        print(' ' * 10, end='')
        print('+')

        print('+', end='')
        print(' ' * 10, end='')
        print('2.添加学生', end='')
        print(' ' * 10, end='')
        print('+')

        print('+', end='')
        print(' ' * 10, end='')
        print('3.修改学生', end='')
        print(' ' * 10, end='')
        print('+')

        print('+', end='')
        print(' ' * 10, end='')
        print('4.删除学生', end='')
        print(' ' * 10, end='')
        print('+')

        print('+', end='')
        print(' ' * 10, end='')
        print('5.查找学生', end='')
        print(' ' * 10, end='')
        print('+')

        print('+', end='')
        print(' ' * 10, end='')
        print('6.退出', end='')
        print(' ' * 13, end='')
        print('+')
        print("=" * 30)

        operation = input('请输入你的操作选择:')
        try:
            if isinstance(int(operation),int):
                operation = int(operation)
                while operation not in range(1,7):
                    operation = input('你输入的操作不存在,请重新输入:')
                    if isinstance(operation, int):
                        operation = int(operation)

                operation_select(operation,username)

                sleep(2)
            else:
                print('你输入的操作必须是(1~6)!!!')
                sleep(2)
        except:
            print('程序异常!!!')
            sleep(2)
        print('返回上一级目录...')

def operation_select(operation:int,username:str):
    '''

    进入操作界面后具体的操作选择
    :param operation: 操作选择
    :return:
    '''
    if operation==1:
        student.show_appoint_stus(username)
        sleep(2)
    elif operation==2:
        one_student=student.add_student(username)
        flag=file_operation.append_student(file_operation.get_all_students(),username,one_student)
        print(flag)
        sleep(2)
    elif operation == 3:
        stuname=input('请输入你要修改的学生的姓名:')
        print(student.modify_student(stuname,username))
        sleep(2)

    elif operation == 4:
        stuname=input('请输入你要删除的学生的姓名:')
        print(student.del_student(stuname,username))
        sleep(2)
    elif operation == 5:
        stuname=input('请输入你要查找的学生的姓名:')
        student.find_student(stuname,username)
        sleep(2)


def fun_operation(operation):
    '''
    操作方式选择
    :param operation:
    :return:
    '''
    operation = int(operation)
    if operation == 1:
        #进入登录界面
        username=login.fun_login()
        if username:
            main_operation(username)
    elif operation == 2:
        #进入注册界面
        logout.fun_regis()
    elif operation == 3:
        #退出登录、结束本程序
        print('谢谢使用!!!')
        exit(0)


if __name__=='__main__':
    while True:
       start_inter()


2.注册模块

"""__author__=wuliang"""
import file_operation
teacher={}
username=''
def fun_regis():
    '''
    注册功能实现
    :return:
    '''

    while True:
        username = input('请输入你的名字:')
        if not file_operation.check_teacher(file_operation.get_all_teacher(),username):
            while len(username)<3 or len(username)>16:
                username = input('请重新输入你的名字(3~16位):')
            print('该用户名可以使用!!!')
            password = input('请输入你的密码:')
            pw = input('确认密码:')
            while pw != password:
                print('密码错误,请重新输入!!')
                password = input('请输入你的密码:')
                pw = input('确认密码:')
            teacher['teaname'] = username
            teacher['password'] = pw
            #将数据存入文件中
            user_list = file_operation.get_all_teacher()
            print(file_operation.append_teacher(user_list,teacher))
            return
        print('用户名已注册!!!')
# def pass_input():
#     '''
#     进行密码确认
#     :return:
#     '''
#     pw = ' '
#     password='  '
#
#     while pw==password:
#         password = input('请输入你的密码:')
#         pw = input('确认密码:')
#     teacher['teaname'] = username
#     teacher['password'] = pw

3.登录模块

"""__author__=wuliang"""
import file_operation
from time import sleep
def fun_login():
    '''

    教师登录功能的实现
    :return: username
    '''
    username = input('请输入你的姓名:')
    password = input('请输入你的密码:')
    user_list = file_operation.get_all_teacher()
    while True:
        try:
            if user_list.index({'teaname':username,'password':password})>=0:
                print('登录成功,现在进入操作界面...')
                sleep(1)
                return username
        except:
            print('用户名或密码错误,请重新输入')
            username = input('请输入你的姓名:')
            password = input('请输入你的密码:')

4.文件操作模块

"""__author__=wuliang"""
import os
'''
文件操作模块,进行文件内容的查询,以及文件内容的更新
'''
try:
    import cPickle as pickle
except ImportError:
    import pickle

filename = 'user.txt'

student_file='student.txt'


def mkuserfile(filename):
    '''
    如果不存在建存储教师信息的文件并返回教师文件对象,否则返回教师文件对象
    :return:文件对象
    '''
    fb = open(filename,'wb')
    return fb

def get_onlyread(filename):
    if not os.path.exists(filename):
        mkuserfile(filename).close()
    fb2 = open(filename, 'rb')
    return fb2

def check_teacher(user_list,username):
    '''
    检查该姓名是否存在
    :param username:
    :return:
    '''

    file = get_onlyread(filename)
    if os.path.getsize(filename):
        for teacher in user_list:
            if teacher['teaname']==username:
                file.close()
                return True

    else:
        file.close()
        return False
    file.close()
    return False


def get_all_teacher():
    '''
    获取所有的教师
    :return:
    '''
    file = get_onlyread(filename)
    if os.path.getsize(filename):
        user_list = pickle.load(file)
        file.close()
        return user_list
    else:
        file.close()
        return []



def append_teacher(teacher_list:list,teacher:dict):
    '''
    添加教师
    :param teacher_list:教师列表
    :param teacher:新教师
    :return:是否成功
    '''
    try:
        file = mkuserfile(filename)
        teacher_list.append(teacher)
        pickle.dump(list(teacher_list),file)
        file.close()
        return '保存成功'
    except:
        return '保存失败'


def get_all_students():
    '''
    获取所有学生
    :param username:
    :return:
    '''
    #1.根据参数获取指定文件的内容
    file = get_onlyread(student_file)
    #2.建立学生总列表
    stu_list = []
    #3.判断文件是否为空
    if os.path.getsize(student_file):

        stu_list=pickle.load(file)

    #4.关闭文件
    file.close()
    return stu_list

def append_student(student_list:list,username:str,student:dict):
    '''
    添加指定教师的学生
    :param student_list:学生的总列表
    :param username:教师姓名
    :param student:新学生
    :return:添加成功 or 失败
    '''
    if student_list==[]:
        file = mkuserfile(student_file)
        pickle.dump([[username,student]],file)
        file.close()
        return '添加成功'
    for one_stu_list in student_list:
        if one_stu_list[0]==username:
            one_stu_list.append(student)
            student_list[student_list.index(one_stu_list)]=one_stu_list
            file = mkuserfile(student_file)
            pickle.dump(student_list,file)
            file.close()
            return "添加成功"

    file = mkuserfile(student_file)
    student_list.append([username, student])
    pickle.dump((student_list), file)
    file.close()
    return '添加成功'

def get_appoint_stu(username):
    '''
    获取指定教师的学生
    :param username: 教师姓名
    :return: stu_appoint_list

    '''
    stu_appoint_list=[]
    all_list = get_all_students()
    for s_l in all_list:
        if s_l[0]==username:
            stu_appoint_list=s_l
            break
    return stu_appoint_list

def check_student(username:str,stuname:str):
    '''
    检查是否该教师下是否已经有了那个学生
    :param stuname: 学生姓名
    :param username: 教师姓名
    :return:False:名字已存在,True:可以注册
    '''
    stu_list=get_appoint_stu(username)
    if stu_list:
        for stu in stu_list[1:]:
            if stu['stuname']==stuname:
                return False
    return True

def modify_student(student_list:list):
    '''
    删除学生并更新表
    :param student_list: 已经删除了学生的的表
    :return:True or False
    '''
    try:
        file = mkuserfile(student_file)
        pickle.dump(student_list, file)
        file.close()
        return True
    except:
        return False

def get_onestudnet(stuname:str,username:str):
    '''
    获取指定学生姓名的学生
    :param stuname:
    :param username:
    :return:
    '''
    appoint_stu_list=get_appoint_stu(username)
    for stu in appoint_stu_list[1:]:
        if stu['stuname']==stuname:
            return stu
    return None

5.学生模块

"""__author__=wuliang"""
import file_operation

def add_student(username):
    '''
    添加学生,获取学生的输入
    :return:
    '''
    stuname = input('请输入你要添加的学生的姓名:')
    while not file_operation.check_student(username,stuname):
        print('对不起输入的学生的姓名存在!!!')
        stuname = input('请重新输入学生的姓名:')
    print('该姓名可以注册!!!')
    stuid = input('请输入你要添加的学号:')
    phone_num = input('请输入你要添加的电话:')
    age = input('请输入你要添加的年龄')
    student={'stuname':stuname,'stuid':stuid,'phone_num':phone_num,'age':age}
    return student


def show_appoint_stus(username:str):
    '''
    查看当前教师所有学生信息
    :param username:
    :return:
    '''
    stu_list=file_operation.get_appoint_stu(username)
    for student_ in stu_list[1:]:
        print('stuname:'+student_['stuname']+' stuid:'+student_['stuid'],end=' ')
        print('phone_num:' + student_['phone_num'] + ' age:' + student_['age'])

def modify_student(stuname:str,username:str):
    '''

    :param stuname:
    :param username:
    :return:
    '''
    stu_appoint_list = file_operation.get_appoint_stu(username)
    for stu in stu_appoint_list[1:]:
        if stu['stuname']==stuname:
            print('你要修改的学生存在!!')
            new_stuname=input('请输入新的姓名:')
            while not file_operation.check_student(username,new_stuname):
                print('你输入的名字已存在!!!')
                new_stuname=input('请重新输入姓名:')
            new_stuid = input('请输入新的学号:')
            new_phone_num = input('请输入新的电话号码:')
            new_age = input('请输入新的年龄:')
            student_={'stuname':new_stuname,'stuid':new_stuid,'phone_num':new_phone_num,'age':new_age}
            all_stu_list=file_operation.get_all_students()
            all_stu_list.remove(stu_appoint_list)

            stu_appoint_list.remove(stu)
            stu_appoint_list.append(student_)

            all_stu_list.append(stu_appoint_list)

            file_operation.modify_student(all_stu_list)
            return '修改成功'

def del_student(stuname:str,username:str):
    '''

    :param stuname:
    :param username:
    :return:
    '''
    stu_all_list=file_operation.get_all_students()

    stu_appoint_list=file_operation.get_appoint_stu(username)
    stu_all_list.remove(stu_appoint_list)
    for stu in stu_appoint_list[1:]:
        if stu['stuname']==stuname:
            stu_appoint_list.remove(stu)
            stu_all_list.append(stu_appoint_list)
            file_operation.dmodify_student(stu_all_list)
            return '删除成功'
            break
    print('你要删除的学生不存在')
    return '删除失败!!'

def find_student(stuname:str,username:str):
    flag=file_operation.get_onestudnet(stuname,username)
    if flag:
        print('stuname:'+flag['stuname']+' stuid:'+flag['stuid'],end=' ')
        print('stuname:'+flag['phone_num']+' age:'+flag['age'])
    else:
        print('对不起,你输入的学生不存在')

6.文件设计

user.txt:存储教师信息文件
存储格式:
  [{'teaname':教师名,'password':登录密码}]

student.txt:存储学生信息文件
存储格式:
  [[教师名,{'stuname':学生名,'stuid':学号,'phone_num':学生电话号码,'age':年龄},...],...]
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,464评论 25 707
  • 非暴力沟通的第二要素是感受。体会和表达感受是件很重要的事情。在生活中,感受往往与看法相近,体会和表达感受并...
    红芝_d3fa阅读 8,061评论 0 0
  • 一个语言表达不是很好的人,怎么才能把想表达的说出来呢,每次想说出口的时候,停住了,犹豫了,也不知道为什么,也许自己...
    那一夏旧时光阅读 128评论 0 0
  • 1、出名要趁早,还是大器晚成 遥想公瑾当年,小乔初嫁了,雄姿英发,羽扇纶巾。自古以来,国人都偏爱少年英雄。这也难怪...
    江左不归人阅读 327评论 0 1