python+tkinter学生管理系统

简介: python+tkinter学生管理系统版权声明:原创转载无说明出处必究 https://blog.csdn.net/qq1123642601/article/details/90760485 ​from tkinter import *from tkinter.

python+tkinter学生管理系统
版权声明:原创转载无说明出处必究 https://blog.csdn.net/qq1123642601/article/details/90760485

 


from tkinter import *
from tkinter.messagebox import *
import sqlite3
from tkinter import ttk

dbstr = "H:mydb.db"

root = Tk()
root.geometry('700x1000')
root.title('学生管理系统')

Label(root, text="学号:").place(relx=0, rely=0.05, relwidth=0.1)
Label(root, text="姓名:").place(relx=0.5, rely=0.05, relwidth=0.1)
Label(root, text="电话:").place(relx=0, rely=0.1, relwidth=0.1)
Label(root, text="地址:").place(relx=0.5, rely=0.1, relwidth=0.1)

sid = StringVar()
name = StringVar()
phone = StringVar()
address = StringVar()
Entry(root, textvariable=sid).place(relx=0.1, rely=0.05, relwidth=0.37, height=25)
Entry(root, textvariable=name).place(relx=0.6, rely=0.05, relwidth=0.37, height=25)

Entry(root, textvariable=phone).place(relx=0.1, rely=0.1, relwidth=0.37, height=25)
Entry(root, textvariable=address).place(relx=0.6, rely=0.1, relwidth=0.37, height=25)

Label(root, text='学生信息管理', bg='white', fg='red', font=('宋体', 15)).pack(side=TOP, fill='x')

def showAllInfo():

x = dataTreeview.get_children()
for item in x:
    dataTreeview.delete(item)
con = sqlite3.connect(dbstr)
cur = con.cursor()
cur.execute("select * from student")
lst = cur.fetchall()
for item in lst:
    dataTreeview.insert("", 1, text="line1", values=item)
cur.close()
con.close()

def appendInfo():

if sid.get() == "":
    showerror(title='提示', message='输入不能为空')
elif name.get() == "":
    showerror(title='提示', message='输入不能为空')
elif phone.get() == "":
    showerror(title='提示', message='输入不能为空')
elif address.get() == "":
    showerror(title='提示', message='输入不能为空')
else:
    x = dataTreeview.get_children()
    for item in x:
        dataTreeview.delete(item)
    list1 = []
    list1.append(sid.get())
    list1.append(name.get())
    list1.append(phone.get())
    list1.append(address.get())
    con = sqlite3.connect(dbstr)
    cur = con.cursor()
    cur.execute("insert into student values(?,?,?,?)", tuple(list1))
    con.commit()
    cur.execute("select * from student")
    lst = cur.fetchall()
    for item in lst:
        dataTreeview.insert("", 1, text="line1", values=item)
    cur.close()
    con.close()

def deleteInfo():

con = sqlite3.connect(dbstr)
cur = con.cursor()
cur.execute("select * from student")
studentList = cur.fetchall()
cur.close()
con.close()
print(studentList)

num = sid.get()
flag = 0
if num.isnumeric() == False:
    showerror(title='提示', message='删除失败')
for i in range(len(studentList)):
    for item in studentList[i]:
        if int(num) == item:
            flag = 1
            con = sqlite3.connect(dbstr)
            cur = con.cursor()
            cur.execute("delete from student where id = ?", (int(num),))
            con.commit()
            cur.close()
            con.close()
            break
if flag == 1:
    showinfo(title='提示', message='删除成功!')
else:
    showerror(title='提示', message='删除失败')

x = dataTreeview.get_children()
for item in x:
    dataTreeview.delete(item)

con = sqlite3.connect(dbstr)
cur = con.cursor()
cur.execute("select * from student")
lst = cur.fetchall()
for item in lst:
    dataTreeview.insert("", 1, text="line1", values=item)
cur.close()
con.close()

Button(root, text="显示所有信息", command=showAllInfo).place(relx=0.2, rely=0.2, width=100)
Button(root, text="追加信息", command=appendInfo).place(relx=0.4, rely=0.2, width=100)
Button(root, text="删除信息", command=deleteInfo).place(relx=0.6, rely=0.2, width=100)

dataTreeview = ttk.Treeview(root, show='headings', column=('sid', 'name', 'phone', 'address'))
dataTreeview.column('sid', width=150, anchor="center")
dataTreeview.column('name', width=150, anchor="center")
dataTreeview.column('phone', width=150, anchor="center")
dataTreeview.column('address', width=150, anchor="center")

dataTreeview.heading('sid', text='学号')
dataTreeview.heading('name', text='名字')
dataTreeview.heading('phone', text='电话')
dataTreeview.heading('address', text='地址')

dataTreeview.place(rely=0.3, relwidth=0.97)

 

作者:WF帆少
来源:CSDN
原文:https://blog.csdn.net/qq1123642601/article/details/90760485
版权声明:本文为博主原创文章,转载请附上博文链接!

相关文章
|
19天前
|
机器学习/深度学习 传感器 存储
使用 Python 实现智能地震预警系统
使用 Python 实现智能地震预警系统
105 61
|
3天前
|
弹性计算 数据管理 数据库
从零开始构建员工管理系统:Python与SQLite3的完美结合
本文介绍如何使用Python和Tkinter构建一个图形界面的员工管理系统(EMS)。系统包括数据库设计、核心功能实现和图形用户界面创建。主要功能有查询、添加、删除员工信息及统计员工数量。通过本文,你将学会如何结合SQLite数据库进行数据管理,并使用Tkinter创建友好的用户界面。
从零开始构建员工管理系统:Python与SQLite3的完美结合
|
7天前
|
机器学习/深度学习 数据采集 存储
使用Python实现智能农业灌溉系统的深度学习模型
使用Python实现智能农业灌溉系统的深度学习模型
42 6
|
7天前
|
数据可视化 开发者 Python
Python GUI开发:Tkinter与PyQt的实战应用与对比分析
【10月更文挑战第26天】本文介绍了Python中两种常用的GUI工具包——Tkinter和PyQt。Tkinter内置于Python标准库,适合初学者快速上手,提供基本的GUI组件和方法。PyQt基于Qt库,功能强大且灵活,适用于创建复杂的GUI应用程序。通过实战示例和对比分析,帮助开发者选择合适的工具包以满足项目需求。
35 7
|
11天前
|
机器学习/深度学习 数据采集 算法框架/工具
使用Python实现智能生态系统监测与保护的深度学习模型
使用Python实现智能生态系统监测与保护的深度学习模型
39 4
|
22天前
|
机器学习/深度学习 API 计算机视觉
基于Python_opencv人脸录入、识别系统(应用dlib机器学习库)(下)
基于Python_opencv人脸录入、识别系统(应用dlib机器学习库)(下)
18 2
|
22天前
|
机器学习/深度学习 存储 算法
基于Python_opencv人脸录入、识别系统(应用dlib机器学习库)(上)
基于Python_opencv人脸录入、识别系统(应用dlib机器学习库)(上)
24 1
|
25天前
|
Ubuntu Linux Python
Ubuntu学习笔记(六):ubuntu切换Anaconda和系统自带Python
本文介绍了在Ubuntu系统中切换Anaconda和系统自带Python的方法。方法1涉及编辑~/.bashrc和/etc/profile文件,更新Anaconda的路径。方法2提供了详细的步骤指导,帮助用户在Anaconda和系统自带Python之间进行切换。
66 1
|
22天前
|
Python
Python实现系统基础信息
Python实现系统基础信息
28 0
|
22天前
|
机器学习/深度学习 缓存 数据可视化
基于Python_opencv的车牌识别系统
基于Python_opencv的车牌识别系统
28 0