Commit a90e8494 by BellCodeEditor

save project

parent cd2bb79e
Showing with 6 additions and 5 deletions
......@@ -3,15 +3,16 @@ userpassword = "123456" # 保存在服务器数据库中的用户密码(正
while True:
# 请用input()实现用户输入账号、密码的功能
name=input('1w')
if username!="1w":
print("sb,1错了!卧槽!")
continue
password=input('2w')
# 如果用户输入的账号、密码正确,提示登陆成功
if userpassword!="2w":
print("sb,2错了!卧槽!")
if name==username and password==userpassword:
print('解锁成功')
break
if username!="1w":
print("sb,1错了!卧槽!")
if userpassword!="2w":
print("sb,2错了!卧槽!")
break
print("你好")
......
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