Commit b055202a by BellCodeEditor

save project

parent 21d0f329
Showing with 4 additions and 1 deletions
......@@ -6,7 +6,10 @@ while True: # 保存在服务器数据库中的用户密码(正确的密码
if name==username and password==userpassword:
print("请重新登入")
break
print("输入用户名或密码有误")
if name != username:
print("输入用户名有误")
if password != userpassword:
print("输入密码有误")
print("欢迎来到贝尔编程")
# 请用input()实现用户输入账号、密码的功能
......
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