Commit 40d11829 by BellCodeEditor

save project

parent 9acdf46f
Showing with 22 additions and 0 deletions
i = 5
username = "见到我的人很傻"
userpassword = "12345"
while True:
if i>0:
name = input("请输入你的账号:")
password = input("请输入你的密码")
i-=1
if username==name and userpassword==password:
print("登陆成功!")
break
if username!=name:
print("你距离死亡还有"+str(i)+"次机会")
print("如果我是你,就不会写错账号")
continue
if userpassword!=password:
print("盗贼!密码暴露了你!把手举起来!?")
else:
print("你已经是只行尸走肉了!?")
exit()
print("欢迎!你进来了,但没完全进来!")
\ 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