Commit 6e55b280 by BellCodeEditor

save project

parent 370cf254
Showing with 23 additions and 8 deletions
username = "python" # 保存在服务器数据库中的用户账号(正确的账号) i=3
userpassword = "123456" # 保存在服务器数据库中的用户密码(正确的密码) name = "001" # 保存在服务器数据库中的用户账号(正确的账号)
word = "3.14" # 保存在服务器数据库中的用户密码(正确的密码)
while True:
if i>0:
name1= input("账号:")
word1= input("密码:")
i-=1
if name1==name and word1==word:
print("登录成功")
break
if name1!=name:
print("账号错误")
print("你还有"+str(i)+"次机会")
continue
if word1!=word:
print("密码错误")
else:
print("登录爆废")
exit()
print("欢迎来到王者农药")
# 请用input()实现用户输入账号、密码的功能 print("农药出击")
\ No newline at end of file
# 如果用户输入的账号、密码正确,提示登陆成功
\ 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