栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Python学生管理系统GUI编程项目

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python学生管理系统GUI编程项目

目录

1.系统功能及其界面化效果

2.程序代码


1.系统功能及其界面化效果

1.1学生信息开发与设计   

包括:Python的基本字符串相关操作、Python序列对象(列表、元组、dict等)、Python选择语句、循环语句、函数和其他相关设计。

实现学生信息的增添以及学生身份判断功能

1.2界面化效果处理

 

2.程序代码(关注me取得另一半哦~)
import tkinter
import tkinter.messagebox
import tkinter as tk
import tkinter.ttk
from tkinter import*

#Enter what we need
def action():
    pass
#Instantiate TK class
root=Tk()
#250x100 defines width and height. Note that x is not *, + lower right
root.geometry('430x500+500+200')
#Do not widen or heighten
root.resizable(False,False)
#set the name of the title
root.title('Student Information-ljl')
#Text layout
Label(root,text='Name:',font=('黑体',15)).grid()
Label(root,text='Grade:',font=('黑体',15)).place(x=0,y=40)
Label(root,text='Class:',font=('黑体',15)).place(x=200,y=40)
Label(root,text='Sex:',font=('黑体',15)).place(x=0,y=80)

#Add button click event handler( add and deleteSelection)
def addInformation():
    name = entryName.get()
    grade = comboGrade.get()
    classSelected=comboClass.get()
    result='Name:'+name
    result=result+';Grade:'+grade
    result=result+';Class:'+classSelected
    result=result+';Sex:'+('Man'if v.get() else'Woman')
    result=result+';Monitor:'+('Yes'if monitor.get() else 'No')
    #Insert information at the top of the list box
    listboxStudents.insert(0,result)
    varName.set('')
def deleteSelection():
    #Gets the current selection of the list box
    selection = listboxStudents.curselection()
    listboxStudents.delete(selection)

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/849094.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号