Commit 1ff29329 by BellCodeEditor

save project

parent 1bf4da97
Showing with 21 additions and 9 deletions
username = "python" i = 5
userpassword = "123456" username = "见到我的人很傻"
userpassword = "12345"
while True: while True:
name = input("请输入用户名:") if i>0:
password = input("请输入密码:") name = input("请输入你的账号:")
if name == username and password == userpassword: password = input("请输入你的密码")
print("登录成功!") i-=1
print("用户名和密码错误!请重新输入") if username==name and userpassword==password:
print("欢迎来到贝尔编程!") print("登陆成功!")
\ No newline at end of file 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