Commit d1fdccdb by BellCodeEditor

save project

parent dbc80b26
Showing with 14 additions and 0 deletions
while True:
username="qaz"
userpassword="123456"
user=input("用户名")
password=input("密码")
if user==username and password==userpassword:
print("成功")
break
if user!=username:
print("错误")
continue
if password!=userpassword:
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