Commit 62649aaa by BellCodeEditor

save project

parent b810c294
Showing with 23 additions and 0 deletions
a="python"
b="123456"
i=3
while True:
if i>0:
c=input("输入账号")
d=input("输入密码")
i-=1
if a==c and b==d:
print("登入成功")
break
if a!=c:
print("账号错误!")
print("剩余"+str(i)+"次")
continue
if b!=d:
print("密码错误")
print("剩余"+str(i)+"次")
else:
print("被锁定")
exit()
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