python 学生信息管理系统

python与数据库的例子

初始化数据库

链接数据库创建库和表并插入数据

init.py

import pymysql
sql_base='create database school;'
sql_table='''create table student(sno   varchar(20) primary key,
                                sname  char(10),
                                sage   int(10),
                                sex     char(4),
                                sacademy  char(10),
                                sgrade     char(9),
                                sclass     char(10))default charset=utf8;'''

DB=pymysql.connect(host='localhost',passwd='1234',charset='utf8',user='root')
cursor=DB.cursor()
cursor.execute(sql_base)
cursor.execute('use school')
cursor.execute(sql_table)

sql_insert='''insert into student values('2016081111','张三',20,'男','软件工程学院','2016',3),
                                        ('2016061111','王杰',21,'男','网络工程学院','2016',3),
                                        ('2016071113','周顺',19,'男','大气科学学院','2016',3),
                                        ('2017081180','李伟',20,'男','软件工程学院','2017',2),
                                        ('2016081201','王丽',20,'女','软件工程学院','2016',5);'''''
cursor.execute(sql_insert)
DB.commit()

实现各种功能

func.py

DB=None
import pymysql
class Method():

    def __init__(self):
        self.qurey_sql='select * from student'


    def qurey_all(self):
        cursor=DB.cursor()
        print('学号  \t     姓名   年龄  性别\t学院\t      学年  班级\t')
        cursor.execute(self.qurey_sql)
        info=cursor.fetchall()
        for i in info:
            if i != info[0]:
                print()
            for j in i:
                print(j,end='   ')
        cursor.close()
    def qurey_sno(self):
        try:
            cursor=DB.cursor()
            sno = input('请输入学号:')
            print('学号  \t     姓名   年龄  性别\t学院\t      学年  班级\t')
            sno_sql = 'select * from student where sno=%s'%(sno)
            cursor.execute(sno_sql)
            a=cursor.fetchall()[0]
            for i in a:
                print(i,end='   ')
        except  Exception as e:
            print('有错误',e)
        finally:
            cursor.close()

    def qurey_sname(self):
        try:
            cursor=DB.cursor()
            sname = input('请输入姓名:')
            print('学号  \t     姓名   年龄  性别\t学院\t      学年  班级\t')
            sno_sql = 'select * from student where sname="%s"'%(sname)
            cursor.execute(sno_sql)
            for i in cursor.fetchall()[0]:
                print(i ,end='   ')
        except Exception as e:
            print('有错误',e)
        finally:
            cursor.close()
    def qurey_academy(self):
        try:
            cursor=DB.cursor()
            academy = input('请输入学院:')
            print('学号  \t     姓名   年龄  性别\t学院\t      学年  班级\t')
            academy_sql = 'select * from student where sacademy="%s"' % (academy)
            cursor.execute(academy_sql)
            x=cursor.fetchall()
            for i in x:
                if i != x[0]:
                    print()
                for j in i:
                    print(j,end='   ')
        except Exception as e:
            print('有错误',e)
        finally:
            cursor.close()
    def add_info(self):
        try:
            cursor=DB.cursor()
            info=list(input('请输入添加的信息   学号  姓名  年龄 性别   学院   年级 班级:\n(每项空格隔开)').split(' '))
            sql_insert='''insert into student values('%s','%s',%d,'%s','%s','%s','%s')'''\
                %(info[0],info[1],int(info[2]),info[3],info[4],info[5],info[6])
            cursor.execute(sql_insert)
            DB.commit()
        except Exception as e:
            print('有错误',e)
        finally:
            cursor.close()

    def modify_info(self):
        try:
            cursor=DB.cursor()
            sname=input('请输入修改学生的名字:')
            sno_sql = 'select * from student where sname="%s"' % (sname)
            cursor.execute(sno_sql)
            print('学号  \t     姓名   年龄  性别\t学院\t      学年  班级\t')
            for i in cursor.fetchall()[0]:
                print(i, end='   ')
            ch=input('\n请输入要修改的字段 :')
            if ch == '学号':
                ch = 'sno'
            if ch == '姓名':
                ch = 'sname'
            if ch == '年龄':
                ch = 'sage'
            if ch == '性别':
                ch = 'sex'
            if ch == '学院':
                ch = 'sacademy'
            if ch == '学年':
                ch = 'sgrade'
            if ch == '班级':
                ch = 'sclass'
            context=input('请输入要修改的信息')
            up_sql='update student set %s="%s" where sname="%s";'%(ch,context,sname)
            cursor.execute(up_sql)
            DB.commit()
            if ch == 'sname':
                sno_sql = 'select * from student where sname="%s"' % (context)
                cursor.execute(sno_sql)
                print('学号  \t     姓名   年龄  性别\t学院\t      学年  班级\t')
                for i in cursor.fetchall()[0]:
                    print(i,end='   ')
            else:
                cursor.execute(sno_sql)
                print('学号  \t     姓名   年龄  性别\t学院\t      学年  班级\t')
                for i in cursor.fetchall()[0]:
                    print(i, end='   ')
        except Exception as e:
            print('错误',e)
        finally:
            cursor.close()

    def delete(self):
        try:
            cursor=DB.cursor()
            cursor.execute(self.qurey_sql)
            for i in cursor.fetchall():
                print(i)
            del1=input('请输入要删除的学生姓名')
            del_sql='delete from student where sname="%s"'%del1
            #print(del_sql)
            cursor.execute(del_sql)
            DB.commit()
        except Exception as e:
            print('出错',e)
        finally:
            cursor.close()


def main():
    global DB
    DB=pymysql.connect(host='localhost',user='root',password='1234',charset='utf8',database='school')
    method=Method()
    print('请选择您的操作:\n1.查询所有学生的信息\t2.按学号查询学生的信息\t3.按姓名查询学生的信息\n4.按学院查询学生的信息\t5.添加学生信息'
        '\t6.修改学生信息\n7.删除学生信息\t8.退出',end='')
    while True:
        c=input('\n请输入功能: (s=功能选项)')
        if c == '1':
            method.qurey_all()
        if c == '2':
            method.qurey_sno()
        if c == '3':
            method.qurey_sname()
        if c == '4':
            method.qurey_academy()
        if c == '5':
            method.add_info()
        if c == '6':
            method.modify_info()
        if c == '7':
            method.delete()
        if c == '8':
            DB.close()
            print('感谢使用')
            break

        if c == 's':
            print('请选择您的操作:\n1.查询所有学生的信息\t2.按学号查询学生的信息\t3.按姓名查询学生的信息\n'
                '4.按学院查询学生的信息\t5.添加学生信息'
                '\t6.修改学生信息\n7.删除学生信息\t8.退出', end='')

main()
posted @ 2021-12-14 15:36  supermao12  阅读(491)  评论(0编辑  收藏  举报