python制作登陆界面
时间: 2023-06-21 18:05:17 浏览: 122
以下是一个简单的 Python 登录界面的示例代码:
```python
import tkinter as tk
def check_user():
username = e1.get()
password = e2.get()
if username == "admin" and password == "123456":
result.config(text="登录成功!")
else:
result.config(text="用户名或密码错误!")
root = tk.Tk()
root.title("登录界面")
tk.Label(root, text="用户名:").grid(row=0, column=0)
tk.Label(root, text="密码:").grid(row=1, column=0)
e1 = tk.Entry(root)
e2 = tk.Entry(root, show="*")
e1.grid(row=0, column=1)
e2.grid(row=1, column=1)
tk.Button(root, text="登录", command=check_user).grid(row=2, column=0, pady=5)
tk.Button(root, text="退出", command=root.quit).grid(row=2, column=1, pady=5)
result = tk.Label(root, text="")
result.grid(row=3, column=0, columnspan=2)
root.mainloop()
```
这段代码使用了 `tkinter` 模块创建了一个简单的 GUI 界面,包括两个输入框和两个按钮。当用户点击“登录”按钮时,程序会检查输入的用户名和密码是否正确,如果正确则显示“登录成功”,否则显示“用户名或密码错误”。
阅读全文