Commit e1d3a442 by BellCodeEditor

save project

parent e79b4ae6
Showing with 18 additions and 14 deletions
i=3
username = "python" username = "python"
userpassword = "123456" userpassword = "123456"
while True: while True:
name = input("请输入用户名:") if i>0:
if name != username : name = input("请输入用户名:")
print("账号") if name != username :
else: print("账号")
break continue
while True: password = input("请输入密码:")
password = input("请输入密码:") if password == userpassword and name == username:
if password == userpassword: print("gogogo")
print("gogogo") break
break else:
else: print("...")
print("...") i -= 1
print("welcome\nglad to see") else:
\ No newline at end of file print("!!!FBI WARNING!!!")
exit()
print("Welcome , sir\nGlad to see")
\ 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