Commit 6fa9caf6 by BellCodeEditor

auto save

parent b9cebfbe
Showing with 5 additions and 1 deletions
...@@ -4,7 +4,11 @@ def reg(): ...@@ -4,7 +4,11 @@ def reg():
name = e1.get() name = e1.get()
passward = e2.get() passward = e2.get()
elpassward = e3.get() elpassward = e3.get()
print(name,passward,elpassward) print("用户输入用户名:"+name)
print("用户输入密码:"+passward)
print("用户输入确认密码:"+elpassward)
if passward!=elpassward:
print("密码不一致,请重新确认密码!")
root = tkinter.Tk() root = tkinter.Tk()
root.title("注册") root.title("注册")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment