主頁 > 知識庫 > Python實戰(zhàn)之實現(xiàn)簡易的學(xué)生選課系統(tǒng)

Python實戰(zhàn)之實現(xiàn)簡易的學(xué)生選課系統(tǒng)

熱門標(biāo)簽:開封自動外呼系統(tǒng)怎么收費 地圖標(biāo)注線上如何操作 開封語音外呼系統(tǒng)代理商 河北防封卡電銷卡 400電話辦理哪種 應(yīng)電話機器人打電話違法嗎 電銷機器人的風(fēng)險 天津電話機器人公司 手機網(wǎng)頁嵌入地圖標(biāo)注位置

一、實驗?zāi)康?/strong>

實現(xiàn)學(xué)生選課系統(tǒng)

二、實驗環(huán)境

Python3.6
pymysql(Python連接MySQL)
xlrd(操作Excel)

三、程序結(jié)構(gòu)

1.首先運行First_run.py:
功能:創(chuàng)建數(shù)據(jù)庫、表等信息

2.運行seconnd_run.py:
功能: 實現(xiàn)學(xué)生選課

3.賬號密碼.xlsx:
存放學(xué)生信息(可以存班級花名冊)

如:

``

四、數(shù)據(jù)庫結(jié)構(gòu)

表之間的聯(lián)系

五、各表功能

student_login:存放學(xué)生賬號信息(直接導(dǎo)入班級花名冊,具體看代碼)
									字段:
												s_no:學(xué)生學(xué)號,
												s_name:學(xué)生姓名,
												s_login:學(xué)生賬號,
												s_pd:學(xué)生密碼													
				course:存放課程信息
							字段:
										c_id:課程編號
										c_name:課程名稱							
				student_class:學(xué)生選課表,存放學(xué)生選課信息
								字段:
										s_no:學(xué)生學(xué)號(設(shè)置外鍵與student_login表s_no連接)
										c_id:課程編號(設(shè)置外鍵與course表c_id連接)							
				admin_login:管理員信息表,存放管理員賬號
								字段:
											a_no:  管理員編號
											a_name:  管理員姓名
											a_login:  管理員賬號
											a_pd:  管理員密碼

六、代碼部分

First_run.py代碼如下:

import pymysql
import xlrd
def create_all():
    try:
        password = input('請輸入mysql密碼(root用戶):')
        db = pymysql.connect(host='localhost', user='root', password=password)
        cursor = db.cursor()
    except pymysql.err.OperationalError:
        print('密碼輸入錯誤!')
    else:
        try:
            sql = 'create database student charset utf8;'
            cursor.execute(sql)
        except pymysql.err.ProgrammingError:
            print("Can't create database 'student' database exists!")
        else:
            sql0 = 'use student;'
            # 創(chuàng)建課程表
            sql1 = "CREATE TABLE course (c_id int(10) PRIMARY KEY AUTO_INCREMENT, c_name VARCHAR ( 30 ) NOT NULL)default charset utf8;"
            # 創(chuàng)建學(xué)生賬號表
            sql2 = "create table student_login(s_no char(10), s_name varchar(30), s_login char(20), s_pd char(20) not null, primary key(s_no)) default charset utf8;"
            # 創(chuàng)建學(xué)生選課表
            sql3 = "CREATE TABLE student_class (s_no CHAR(10),c_id INT,CONSTRAINT FOREIGN KEY (s_no) REFERENCES student_login (s_no),CONSTRAINT FOREIGN KEY (c_id) REFERENCES course (c_id),unique(s_no,c_id)) default charset utf8;"  # unique(s_no,c_id))聯(lián)合唯一,確保選課唯一
            # 創(chuàng)建管理員賬號表
            sql4 = "create table admin_login(a_no char(10), a_name varchar(30), a_login char(10)  unique, a_pd char(10) not null, primary key(a_no)) default charset utf8;"
            cursor.execute(sql0)
            cursor.execute(sql1)
            cursor.execute(sql2)
            cursor.execute(sql3)
            cursor.execute(sql4)
            db.commit()
            print('Successful!')
def insert_student_login(db):
    def open_excel():
        try:
            book = xlrd.open_workbook("賬號密碼.xlsx")  # 文件名,把文件與py文件放在同一目錄下
        except:
            print("Open excel file failed!")
        else:
            try:
                sheet = book.sheet_by_name("Sheet1")  # execl里面的sheet1
            except:
                print('No Sheet1')
            else:
                print('Yes')
                return sheet

    def insert_data():
        sheet = open_excel()
        cursor = db.cursor()
        for i in range(1, sheet.nrows):  # 第一行是標(biāo)題名,對應(yīng)表中的字段名所以應(yīng)該從第二行開始,計算機以0開始計數(shù),所以值是1
            s_no = str(sheet.cell(i, 0).value)[0:10]  # 取第i行第0列
            s_name = sheet.cell(i, 1).value  # 取第i行第1列,下面依次類推
            s_login = str(sheet.cell(i, 2).value)[0:10]
            s_pd = str(sheet.cell(i, 3).value)[0:10]
            # print(name)
            # print(data)
            # value = (name,data)
            # print(value)
            sql = "INSERT INTO student_login VALUES('%s','%s','%s','%s')" % (s_no, s_name, s_login, s_pd)
            cursor.execute(sql)  # 執(zhí)行sql語句
            db.commit()
    insert_data()
    # cursor.close()  # 關(guān)閉連接
    # db.close()#關(guān)閉數(shù)據(jù)
    print("插入成功!")


def insert_admin_login(db):
    try:
        cursor = db.cursor()
        sql = 'insert into admin_login values("1","admin","1","1")'
        cursor.execute(sql)
        db.commit()
    except:
        print('Insert admin_login Failed!?。?)
    else:
        print('Successful!')

def insert_into_course(db):
    try:
        cursor = db.cursor()
        sql = 'insert into course values(1,"高數(shù)"),(2,"大學(xué)英語");'      # 默認插入兩個課程供選擇
        cursor.execute(sql)
        db.commit()
    except:
        print('Insert course Failed!')
    else:
        print('Successful!')

def main():
    create_all()
    try:
        passwd = input('請輸入MySQL密碼:')
        db = pymysql.connect(host="localhost", user="root", passwd=passwd, db="student", charset='utf8')
    except:
        print("Could not connect to mysql server!")
    else:
        insert_student_login(db)
        insert_admin_login(db)
        insert_into_course(db)

if __name__ == '__main__':
    main()

second_run.py代碼如下:

import pymysql

# 創(chuàng)建游標(biāo)函數(shù)
def get_db():
    try:
        passwd = input('請輸入MySQL密碼:')
        db = pymysql.connect('127.0.0.1', 'root', passwd, 'student')
    except pymysql.err.OperationalError:
        print('密碼輸入錯誤!Go Die!')
    else:
        return db
def get_cursor(db):
    cursor = db.cursor()
    return cursor
# 選擇身份
def login(db, cursor):
    menu_login()
    i = 0
    while True:
        i += 1  # 設(shè)置循環(huán),超過三次退出系統(tǒng)
        login_select = input('請輸入你的選項:')
        if login_select == '1':  # 這里數(shù)字為字符串類型,記得要引號!
            student_login(db, cursor)  # 跳入學(xué)生登錄頁面
        elif login_select == '2':
            admin_login(db, cursor)  # 跳入管理員登錄頁面
        else:
            print('請輸入正確的選項!>>>>>>>>請擦擦眼睛再重選--*--(^_^)--*-- :')
            if i >= 3:
                print('GoodBye了您啊!')
                break

# 學(xué)生登錄認證
def student_login(db,cursor):
    print('           -----------------****----------^_^|-歡迎進入學(xué)生系統(tǒng)-|^_^----------****----------------------------      ')
    l = 0
    while True:
        login = input('請輸入你的賬號:')
        sql = "SELECT * FROM student_login where student_login.s_login='%s'" % login
        cursor.execute(sql)
        login_id = cursor.fetchall()
        if len(login_id) == 0:
            l += 1
            print('賬號不存在,請重新輸入:')
            if l >= 3:
                print()
                print('賬號不存在,請聯(lián)系管理員申請賬號!')
                exit()
        else:
            p = 0  # 第一次錯誤:放在了while語句里面,導(dǎo)致超過三次無法退出(每次循環(huán)都會將p初始化為0)
            while True:
                password = input('請輸入你的密碼:')
                sql2 = "SELECT * FROM student_login where student_login.s_login='%s'and student_login.s_pd ='%s'" % (
                    login, password)
                cursor.execute(sql2)
                login_pd = cursor.fetchall()
                if len(login_pd) == 0:
                    p += 1
                    print('密碼錯誤!')
                    if p >= 3:
                        print('密碼輸入錯誤三次,GoodBye了您??!')
                        exit()
                elif len(login_pd) != 0:
                    sql3 = "SELECT s_name,s_no from student_login where s_login = '%s'; " % login
                    # sql4 = "select s_no from student_login where s_login = '%s';" % login
                    cursor.execute(sql3)
                    # cursor.execute(sql4)
                    data = cursor.fetchall()[0]
                    s_name = data[0]           # 姓名
                    s_no = data[1]             # 學(xué)號
                    print()
                    print("            -------------****----------^_^歡迎--|", s_name,
                          "|--進入學(xué)生選課系統(tǒng)^_^----------****-----------------")
                    # 學(xué)生系統(tǒng)模塊
                    i = 0
                    while True:
                        student_select_menu()
                        student_select = input('請輸入你的選項:')
                        if student_select == '1':
                            show_course(cursor)
                        elif student_select == '2':
                            select_course(db, cursor, s_name, s_no)
                        elif student_select == '3':
                            show_class(cursor, s_no)
                            # exit()
                        elif student_select == '4':
                            update_class(db, cursor, s_name, s_no)
                        elif student_select == '5':
                            print('\n您已退出登錄^_^\n')
                            select = input('請輸入 1 或 2 分別進入學(xué)生與管理員系統(tǒng) or 輸入 0 退出系統(tǒng):')
                            if select == '1':
                                student_login(db, cursor)
                            elif select == '2':
                                admin_login(db, cursor)
                            elif select == '0':
                                exit()
                            else:
                                print('請輸入正確選項!')
                        elif i >= 3:
                            print('GoodBye了您?。?)
                            print()
                            break  # 重新登錄學(xué)生操作,密碼鎖定
                        else:
                            i += 1
                            print('請輸入正確的選項!>>>>>>>>請擦擦眼睛再重選--*--(^_^)--*-- :')
# 管理員登錄認證
def admin_login(db, cursor):
    print('      -------------------****----------^_^|-歡迎進入管理員系統(tǒng)-|^_^----------****--------------------------      ')
    l = 0
    while True:
        login = input('請輸入你的賬號:')
        sql = "SELECT * FROM admin_login where admin_login.a_login='%s'" % login
        cursor.execute(sql)
        login_id = cursor.fetchall()
        if len(login_id) == 0:
            l += 1
            print('賬號不存在,請重新輸入:')
            if l >= 3:
                print()
                print('賬號不存在,請聯(lián)系站長申請賬號!')
                exit()
        else:
            p = 0  # 第一次錯誤:放在了while語句里面,導(dǎo)致超過三次無法退出(每次循環(huán)都會將p初始化為0)
            while True:
                password = input('請輸入你的密碼:')
                sql2 = "SELECT * FROM admin_login where admin_login.a_login='%s'and admin_login.a_pd ='%s'" % (
                    login, password)
                cursor.execute(sql2)
                login_pd = cursor.fetchall()
                if len(login_pd) == 0:
                    p += 1
                    print('密碼錯誤!')
                    if p >= 3:
                        print('密碼輸入錯誤三次,GoodBye了您?。?)
                        exit()
                elif len(login_pd) != 0:
                    sql3 = "SELECT a_name from admin_login where a_login = '%s'; " % login
                    cursor.execute(sql3)
                    s_name = cursor.fetchall()[0][0]
                    print()
                    print("             --------------****----------^_^歡迎--|", s_name, "|--進入管理員系統(tǒng)^_^----------****-----------------")
                    # 管理員系統(tǒng)模塊
                    i = 0
                    while True:
                        admin_select_menu()
                        admin_select = input('請輸入你的選項:')
                        if admin_select == '1':
                            show_course(cursor)
                            # exit()
                        elif admin_select == '0':
                            delete_course(db, cursor)
                        elif admin_select == '2':
                            add_course(db, cursor)
                            # exit()
                        elif admin_select == '3':
                            show_studentlogin(cursor)
                            # exit()
                        elif admin_select == '4':
                            add_studentlogin(db, cursor)
                            # exit()
                        elif admin_select == '5':
                            show_adminlogin(cursor)
                            # exit()
                        elif admin_select == '6':
                            add_admin_login(db, cursor)
                            # exit()
                        elif admin_select == '7':
                            show_student_class(cursor)
                        elif admin_select == '8':
                            print('您已退出登錄!\n')
                            select = input('請輸入 1 或 2 分別進入學(xué)生與管理員系統(tǒng) or 輸入 0 退出系統(tǒng):')
                            if select == '1':
                                student_login(db,cursor)
                            elif select == '2':
                                admin_login(db, cursor)
                            elif select == '0':
                                exit()
                            else:
                                print('請輸入正確選項!')
                        elif i >= 3:
                            print('GoodBye了您??!')
                            print()
                            break  # 重新登錄管理員系統(tǒng)操作
                        else:
                            i += 1
                            print('請輸入正確的選項!>>>>>>>>請擦擦眼睛再重選--*--(^_^)--*-- :')
# 登錄菜單欄
def menu_login():
    menu_login1 = '''
        -----------------------------****----------(^_^)----------****------------------------------------
        |                                  歡迎登錄學(xué)生選課系統(tǒng)                                           |
        |                                      1、學(xué)生登錄                                                |
        |                                      2、管理員登錄                                              |
        |                  (請在菜單選擇你的操作,選擇其他無效,超過三次自動退出系統(tǒng)!)                  |
        '''
    print(menu_login1)
# 學(xué)生選課菜單欄
def student_select_menu():
    menu_login = '''
            |                                   1、查看當(dāng)前可選課程                                           |
            |                                   2、選擇課程                                                   |
            |                                   3、查看已選課程                                               |
            |                                   4、更改課程                                                   |
            |                                   5、退出系統(tǒng)                                                   |
            |                  (請在菜單選擇你的操作,選擇其他無效,超過三次自動退出系統(tǒng)?。?                 |
            '''
    print(menu_login)
# 管理員操作菜單
def admin_select_menu():
    menu_login = '''
            |                                  0、刪除課程                                                    |
            |                                  1、查看所有課程                                                |
            |                                  2、添加課程                                                    |
            |                                  3、查看所有學(xué)生賬號信息                                        |
            |                                  4、添加學(xué)生賬號                                                |
            |                                  5、查看所有管理員信息                                          |
            |                                  6、添加管理員賬號                                              |
            |                                  7、查看所有學(xué)生選課信息                                        |
            |                                  8、退出系統(tǒng)                                                    |
            |                  (請在菜單選擇你的操作,選擇其他無效,超過三次自動退出系統(tǒng)?。?                 |
            '''
    print(menu_login)
# 學(xué)生系統(tǒng)模塊
# 查看所有課程 完
def show_course(cursor):
    sql = "select * from course;"
    cursor.execute(sql)
    data = cursor.fetchall()
    # print(type(data))       # 元組類型
    item = len(data)
    if item == 0:
        print('暫無課程信息!')
    else:
        print()       # 換行
        print('         課程如下:')
        for i in range(item):
            course = data[i]
            select = {
                "編號": course[0],
                "課程": course[1]
            }
            print('                 ', select)
# 選課  完成
def select_course(db, cursor, s_name, s_no):
    print(s_name)
    try:
        number = int(input('請輸入你的課程編號:'))
        sql = "SELECT c_name FROM course where c_id = %s" % number  # 查找課程名字
        cursor.execute(sql)
        course = cursor.fetchall()[0][0]
    except IndexError:
        print('沒有你要選的課程,請重選!')
    except ValueError:
        print('請正確輸入課程編號!')
    else:
        print('你選的課程為:', course)
        confirm = input('是否繼續(xù)(Y/N):')
        if confirm == 'Y' or confirm == 'y':
            try:
                sql_insert = "insert into student_class values('%s','%s');" % (s_no, number)     # 插入課程
                cursor.execute(sql_insert)
                db.commit()
            except:
                print("課程已存在或選課失敗!")
            else:
                print('Successful!')
        else:
            print('Failed??!')
# 查看已選課
def show_class(cursor, s_no):
    try:
        sql = 'SELECT c_name FROM student_class sc INNER JOIN course c ON sc.c_id = c.c_id INNER JOIN student_login sl ON sc.s_no = sl.s_no where sc.s_no = "%s";' % s_no
        cursor.execute(sql)
        data = cursor.fetchall()
    except IndexError:
        print('暫無選課信息!')
    else:
        print('\n                你選的課程為:')
        for i in range(len(data)):
            print('                             ', data[i][0], '^_^')

# 修改選課
def update_class(db, cursor, s_name, s_no):
    while True:
        try:
            course = input('請輸入你要修改的課程編號:')
            sql0 = "select * from student_class where s_no = '%s' and c_id = '%s'" % (s_no, course)
            cursor.execute(sql0)
            data0 = cursor.fetchall()
            if len(data0) != 0:
                re_course = input('請輸入你要選的課程編號:')
                sql = "select c_name from course where c_id = %s" % re_course  # 查找是否存在課程編號
                cursor.execute(sql)
                data = cursor.fetchall()      # 課程編號所對應(yīng)課程
            else:
                print('你沒有選擇這個課程!')              # 選課表中學(xué)生沒有選擇該課程
                continue            # 終止后面語句,進入下次循環(huán)

        except IndexError:
            print('沒有你要選的課程,請重選!')
        else:
            if len(data) != 0:
                print('你重選的課程為:', data[0][0])     # data[0][0] 切片出來課程名稱
                confirm = input('是否繼續(xù)(Y/y):')
                if confirm == 'Y' or confirm == 'y':
                    try:
                        sql = "UPDATE `student`.`student_class` SET `c_id` = '%s' WHERE `s_no` = '%s' AND `c_id` = '%s' LIMIT 1" % (
                            re_course, s_no, course)  # 更新課程
                        cursor.execute(sql)
                        db.commit()
                    except:
                        print("失敗")
                    else:
                        print('Successful!')
                        break                    # 修改成功退出循環(huán)
                else:
                    print('Failed??!')
            else:
                print('沒有這個課程!')


# 管理員模塊
# 添加課程
def delete_course(db, cursor):
    try:
        course = input('請輸入你要刪除的課程編號:')
        sql = 'DELETE FROM course WHERE c_id = %s ' % course
        cursor.execute(sql)
        db.commit()
    except:
        print('刪除失?。?)
    else:
        print('刪除成功 ^_^')

def add_course(db, cursor):
    course = input('請輸入你要插入的課程:')
    try:
        sql = "INSERT INTO course(c_name) VALUES ('%s')" % course
        cursor.execute(sql)
        db.commit()  # 執(zhí)行插入語句
    except pymysql.err.IntegrityError:
        print('課程已經(jīng)存在,不能重復(fù)!')
    else:
        print('添加成功')

# 查看學(xué)生賬號  (已完成)
def show_studentlogin(cursor):
    sql = 'select * from student_login;'
    cursor.execute(sql)
    data = cursor.fetchall()
    print('          學(xué)生賬號如下:\n')
    for i in range(len(data)):
        item = data[i]
        dict = {
            'sno': item[0],
            's_name': item[1],
            's_login': item[2],
            's_pd': item[3]
        }
        print('                ', dict)
# 添加學(xué)生賬號
def add_studentlogin(db, cursor):
    try:
        s_no = input('請輸入學(xué)生的學(xué)號:')
        s_name = input('請輸入學(xué)生的姓名:')
        s_login = input('請輸入學(xué)生的賬號:')
        s_pd = input('請輸入學(xué)生的密碼:')
        cursor.execute('insert into student_login values("%s","%s","%s","%s");'% (s_no, s_name, s_login, s_pd))
        db.commit()
    except pymysql.err.IntegrityError:
        print('添加失敗,學(xué)號/賬號已存在!')
    else:
        print('添加成功^_^')

# 查看管理員賬號 完
def show_adminlogin(cursor):
    sql = 'select * from admin_login;'
    cursor.execute(sql)
    data = cursor.fetchall()
    for i in range(len(data)):
        item = data[i]
        dict = {
            'sno': item[0],
            's_name': item[1],
            's_login': item[2],
            's_pd': item[3]
        }
        print('                                 ', dict)
def add_admin_login(db, cursor):     # 注意,傳入?yún)?shù)的時候一定要先傳db再傳游標(biāo)
    try:
        s_no = input('請輸入管理員的編號:')
        s_name = input('請輸入管理員的姓名:')
        s_login = input('請輸入管理員的賬號:')
        s_pd = input('請輸入管理員的密碼:')
        sql = 'insert into admin_login values("%s","%s","%s","%s");' % (s_no, s_name, s_login, s_pd)
        cursor.execute(sql)
        db.commit()
    except pymysql.err.IntegrityError:
        print('添加失敗,編號/賬號已存在!')
    else:
        print('添加成功^_^')

# 查看學(xué)生選課信息 (完)
def show_student_class(cursor):
    sql = 'SELECT * FROM student_class sc INNER JOIN course c ON sc.c_id = c.c_id INNER JOIN student_login sl ON sc.s_no = sl.s_no order by s_name;'
    cursor.execute(sql)
    data = cursor.fetchall()
    print('\n')
    if len(data) > 1:
        for i in range(len(data)):
            item = data[i]
            # print(item)        # 打印查詢結(jié)果
            dict = {                # 取值
                'sc_no': item[0],
                'sc_name': item[5],
                'sc_course': item[3]
            }
            print('                        ', dict)
    else:
        print('沒有選課信息')
def main():
    try:
        db = get_db()
        cursor = get_cursor(db)
    except AttributeError:
        print('AttributeError!')
    else:
        login(db, cursor)
        
if __name__ == '__main__':
    main()

七、效果展示

運行First_run:

這里因為我已經(jīng)創(chuàng)建過數(shù)據(jù)庫,try語句直接捕獲錯誤
刪除student數(shù)據(jù)庫后重新運行(亦可在SQL語句中加入判斷是否存在數(shù)據(jù)庫)

這時可見我們的數(shù)據(jù)庫及表等信息已經(jīng)創(chuàng)建完成
可以看下數(shù)據(jù)庫確認一下:

接著運行second_run:

1.學(xué)生登錄

具體的功能請自行查看。

當(dāng)然代碼有很多不足的地方:

沒有封裝成類,全部代碼均為函數(shù)嵌套式的,層次不是特別鮮明

沒有可視化的界面,可以添加tkinter模塊增加有好的可視化界面。

到此這篇關(guān)于Python實戰(zhàn)之實現(xiàn)簡易的學(xué)生選課系統(tǒng)的文章就介紹到這了,更多相關(guān)Python學(xué)生選課系統(tǒng)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • python實現(xiàn)學(xué)生管理系統(tǒng)源碼
  • 基于python制作簡易版學(xué)生信息管理系統(tǒng)
  • Python實現(xiàn)學(xué)生管理系統(tǒng)的完整代碼(面向?qū)ο?
  • 使用python實現(xiàn)學(xué)生信息管理系統(tǒng)
  • python實現(xiàn)學(xué)生信息管理系統(tǒng)源碼
  • python實現(xiàn)簡單的學(xué)生管理系統(tǒng)
  • 利用Python實現(xiàn)學(xué)生信息管理系統(tǒng)的完整實例
  • 基于Python實現(xiàn)簡單學(xué)生管理系統(tǒng)
  • 用python實現(xiàn)學(xué)生管理系統(tǒng)
  • python實現(xiàn)學(xué)生管理系統(tǒng)開發(fā)
  • python實現(xiàn)簡單學(xué)生信息管理系統(tǒng)
  • python學(xué)生管理系統(tǒng)的實現(xiàn)

標(biāo)簽:山東 駐馬店 成都 蘭州 常州 六盤水 江蘇 宿遷

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Python實戰(zhàn)之實現(xiàn)簡易的學(xué)生選課系統(tǒng)》,本文關(guān)鍵詞  Python,實戰(zhàn),之,實現(xiàn),簡易,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Python實戰(zhàn)之實現(xiàn)簡易的學(xué)生選課系統(tǒng)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Python實戰(zhàn)之實現(xiàn)簡易的學(xué)生選課系統(tǒng)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章