Commit 465364db by BellCodeEditor

auto save

parent d7583174
Showing with 0 additions and 18 deletions
username = "python" # 保存在服务器数据库中的用户账号(正确的账号)
userpassword = "123456" # 保存在服务器数据库中的用户密码(正确的密码)
i=3
while True:
if i>0 :
name=input("账号")# 请用input()实现用户输入账号、密码的功能
password=input("密码")
i=i-1
if name!=username:
print("账号错误")
elif password != userpassword: # 如果用户输入的账号、密码正确
print("密码错误")
else:
print("正确")
else :
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