Commit c9db5ad0 by BellCodeEditor

save project

parent 5c9b87bd
Showing with 29 additions and 0 deletions
a ='python'
b ='12345'
e =0
while e < 3:
c = input("请输入用户名:")
d = input("请输入密码:")
if a == c and b == d:
print("登录成功")
e +=3
elif a != c and b == d:
print("用户名错误")
e +=1
elif a == c and b != d:
print("密码错误")
e +=1
else:
print("该账号不存在")
e +=1
print("账号封锁中")
print("账号已封锁")
#print("自爆准备")
#print("程序删除中")
#print("删除完毕")
#print(3)
#print(2)
#print(1)
#print(0)
#print("Boom!!!")
\ No newline at end of file
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