Commit 5c9f766a by BellCodeEditor

save project

parent ad0aa0de
Showing with 9 additions and 6 deletions
q = "python" # 保存在服务器数据库中的用户账号(正确的账号) q = "A" # 保存在服务器数据库中的用户账号(正确的账号)
p = "123456" # 保存在服务器数据库中的用户密码(正确的密码) p = "1" # 保存在服务器数据库中的用户密码(正确的密码)
# 请用input()实现用户输入账号、密码的功能 # 请用input()实现用户输入账号、密码的功能
a=input("x") while True:
b=input("x") a=input("x")
if a=q and b=p: b=input("x")
print("x") if a==q and b==p:
print("X")
break
print("x")
......
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