python学习记录(实操)
2021/12/30 1:09:13
本文主要是介绍python学习记录(实操),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
简易登录系统窗口的制作
import time from tkinter import * from tkinter import messagebox class Application(Frame): def __init__(self, master=None): super().__init__(master) self.master = master self.pack() self.creatWidget() def creatWidget(self): self.Label01 = Label(self, text='用户名') self.Label01.pack() v1 = StringVar() self.entry01 = Entry(self, textvariable=v1) self.entry01.pack() self.Label02 = Label(self, text='密码') self.Label02.pack() v2 = StringVar() self.entry02 = Entry(self, textvariable=v2, show="*") self.entry02.pack() Button(self, text="登录", command=self.login).pack() def login(self): username = self.entry01.get() pwd = self.entry02.get() print("数据库比对,用户名和密码正确") print("用户名:"+username) print("密码:" +pwd) print("登录时间:"+str(time.time())) if username=="123456" and pwd=="123456": messagebox.showinfo("xx登录系统", "登录成功!") else: messagebox.showinfo("xx登录系统","用户名或密码错误!") if __name__=='__main__': root = Tk() root.geometry("400x130+300+200") app = Application(master=root) root.mainloop()
这篇关于python学习记录(实操)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型