当前位置:   article > 正文

python(UI界面)学生信息管理系统+视频讲解_python编写学生管理系统,用gui做ui

python编写学生管理系统,用gui做ui

学生信息管理系统

课程名称:《Python程序设计

项目名称 学生信息管理系统

一、实验目的

1、按系统需求分析,设计至少5个功能模块。
2、利用python程序设计编写UI界面, UI中需要有:button组件、label组件、Entry组件、布局等。
3、该系统中的模块具有增、删、改、查的功能,查询页面等。
4、系统能应用Python程序流程结构、组合数据类型、函数、异常处理、文件操作、标准库、第三方库、类和对象等知识。
5、整个系统要运行流畅,不能出现异常的问题。

###二、实验内容
介绍:pythonGUI学生信息管理系统是一款基于Python语言开发的GUI(图形用户界面)学生信息管理系统,可以帮助用户快速完成学生信息的管理工作。该系统可以实现学生信息的录入、查询、修改、删除、显示等功能,可以更加方便地管理学生信息。此外,该系统还支持数据的导出,可以将学生信息导出到txt文档中,方便用户进行分析和统计。
1、主界面
在这里插入图片描述

2、添加学生信息界面

在这里插入图片描述

3、删除学生界面
先通过学号查询学生信息
在这里插入图片描述

4、修改学生信息界面
通过学号查询
在这里插入图片描述

查询后显示修改界面
在这里插入图片描述

5、查询学生信息界面
在这里插入图片描述

6、显示学生信息界面
在这里插入图片描述

###三、结论与心得

本次Python实践基于GUI学生信息管理系统的实践收获意义颇丰,本次实践熟悉了Tkinter的基本使用方法,学会用Tkinter制作多个小窗体,熟练使用 Tkinter的几个组件,包括Frame、Label、Button、Entry、Text、Listbox;学会Tkinter框架下对数据库的增删改查操作,以及用文本框在GUI界面上进行输入输出;学会Python函数、类、异常处理的相关知识;还学会像软件工程一样设计程序,从整体程序设计到页面设计、界面编程后端数据库连接,都有掌握。

综上,本次实践让我对Python GUI控件实践进行了更深入的考察,对Python语言有了更好的了解与掌握,也培养了良好的程序设计能力,我希望自己能在以后的实践实验中不断取得更好的成绩。

视频讲解:

python学生信息管理系统讲解

# 使用tkinter模块实现GUI界面
import tkinter as tk
from tkinter import messagebox

# 用来存储学生信息的总列表[学号(6位)、姓名、专业、年龄(17~25)、班级(序号)、电话(11位)]
#                        [ID        Name  Major Age         Class       Telephone]
Info = []


# 定义一个方法用于使用w模式写入文件:传入已经存好变更好信息的列表,然后遍历写入txt文档
def WriteTxt_w_Mode(Student_List):
    # w:只写入模式,文件不存在则建立,将文件里边的内容先删除再写入
    with open("Student_Info.txt", "w", encoding="utf-8") as f:
        for i in range(0, len(Student_List)):
            Info_dict = Student_List[i]
            # 最后一行不写入换行符'\n'
            if i == len(Student_List) - 1:
                f.write("{0}\t{1}\t{2}\t{3}\t{4}\t{5}".format \
                            (Info_dict["ID"], Info_dict["Name"], Info_dict["Major"], Info_dict["Age"],
                             Info_dict["Class"], Info_dict["Telephone"]))
            else:
                f.write("{0}\t{1}\t{2}\t{3}\t{4}\t{5}\n".format \
                            (Info_dict["ID"], Info_dict["Name"], Info_dict["Major"], Info_dict["Age"],
                             Info_dict["Class"], Info_dict["Telephone"]))


# 定义一个方法用于读取文件
def ReadTxt() -> list:
    # 临时列表
    Temp_List1 = []
    Temp_List2 = []
    # 打开同目录下的文件
    f = open("./Student_Info.txt", 'r', encoding="utf-8")
    # 遍历,读取文件每一行信息
    for i in f:
        a = str(i)
        b = a.replace('\n', '')
        Temp_List1.append(b.split("\t"))
    # 将读写的信息并入临时列表
    while len(Temp_List2) < len(Temp_List1):
        for j in range(0, len(Temp_List1)):
            ID = Temp_List1[j][0]
            Name = Temp_List1[j][1]
            Major = Temp_List1[j][2]
            Age = Temp_List1[j][3]
            Class = Temp_List1[j][4]
            Telephone = Temp_List1[j][5]

            Info_dict = {"ID": ID,
                         "Name": Name,
                         "Major": Major,
                         "Age": Age,
                         "Class": Class,
                         "Telephone": Telephone
                         }
            Temp_List2.append(Info_dict)
    # 关闭文件
    f.close()
    # 将含有学生信息的临时列表返回
    return Temp_List2


# 定于一个方法,用于检查学号是否规范
def is_ID(ID):
    return len(ID) == 6 and ID.isdigit()


# 定于一个方法,用于检查年龄是否规范
def is_Age(Age):
    return Age.isdigit() and 17 <= int(Age) and int(Age) <= 25


# 定于一个方法,用于检查班级是否规范
def is_Class(Class):
    return Class.isdigit() and int(Class) > 0


# 定于一个方法,用于检查电话是否规范
def is_Telephone(Telephone):
    return len(Telephone) == 11 and Telephone.isdigit()


# 定义一个方法,用于判断是否为中文字符
def is_Chinese(ch):
    if ch >= '\u4e00' and ch <= '\u9fa5':
        return True
    else:
        return False


# 定义一个方法,用于计算中西文混合字符串的字符串长度
def Len_Str(string):
    count = 0
    for line in string:
        if is_Chinese(line):
            count = count + 2
        else:
            count = count + 1
    return count


# 提示信息
def Tip_Add():
    messagebox.showinfo("提示信息", "添加成功")


def Tip_Search():
    messagebox.showinfo("提示信息", "查询成功")


def Tip_Del():
    messagebox.showinfo("提示信息", "删除成功")


def Tip_Mod():
    messagebox.showinfo("提示信息", "修改成功")


def Tip_Add_ID_Repeat():
    messagebox.showinfo("提示信息", "此学号已经存在,请勿重复添加!")


def Tip_Del_ID_None():
    messagebox.showinfo("提示信息", "此学号不存在,请重新输入!")


def Tip_Search_None():
    messagebox.showinfo("提示信息", "未查询到有关学生信息!")


def Tip_Add_ID():
    messagebox.showinfo("提示信息", "学号格式有误,请重新输入!")


def Tip_Add_Age():
    messagebox.showinfo("提示信息", "年龄格式有误,
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/874733
推荐阅读
相关标签
  

闽ICP备14008679号