题目要求
1、输入用户名和密码后回车
2、密码输入错误,给出提示,并选择是否重新输入
3、密码输入错误三次后,用户被锁定,无法继续登陆
构思
1、用户输入账号和密码后,需要判断账号是否存在
2、判断账号是否被禁用(错误次数大于三次)
3、判断账号密码是否正确
4、不同的错误给出不同的提示
5、每输入错一次,文档中的错误次数需要更新
6、如果三次以内用户登陆成功,密码原来的错误次数被重置
题目完成步骤
1、文档的编写
考虑到数据的存储问题,决定将账号、密码、错误次数进行分行存储,三行为一组用户信息
2、代码编写
go = True
while go:
# 用来判断账号是否存在
no_existence_flag = True
# 用来判断是否输入正确
no_flag = True
# 用来判断是否已经被封
disable_flag = True
# 用来判断次数是否已经超过限制
account = input("account:")
password = input("password:")
# 判断账号是否存在(自己写入已存在用户的账号密码)
file = open("C:/Users/Lenovo/Desktop/user.txt","r")
# 用于拼接文本内容
file_data = ""
while True:
line = file.readline()
if not line:
break
file_data += line
line_content = line.strip()
# 判断是否存在账号
if account == line_content:
no_existence_flag = False
true_password = file.readline()
file_data += true_password
true_password_content = true_password.strip()
disable_flag_line = file.readline()
disable_flag_num = int(disable_flag_line.strip())
# 判断账号是否被禁用
if disable_flag_num != 3:
print("It is not disable!",disable_flag_num)
disable_flag = False
# 判断密码是否正确
if password == true_password_content:
no_flag = False
print("Welcome in this system,{account}!".format(account = account))
go = False
disable_flag_line = disable_flag_line.replace(str(disable_flag_num),str(0))
file_data += disable_flag_line
else:
disable_flag_line = disable_flag_line.replace(str(disable_flag_num),str(disable_flag_num+1))
file_data += disable_flag_line
else:
file_data += file.readline()
else:
file_data += file.readline()
file_data += file.readline()
file.close()
# 账号不存在的报错
if no_existence_flag:
print("This account is not existence!")
print("Do you want to try it again......")
flag = input("Please input you think:")
if flag == "N":
go = False
continue
# 账号被禁用的报错
if disable_flag:
print("You account is disable,please go home by youself!")
print("Do you want to try it again......")
flag = input("Please input you think:")
if flag == "N":
go = False
continue
# 账号密码错误的报错
if no_flag:
file = open("C:/Users/Lenovo/Desktop/user.txt","w")
print(file_data)
file.write(file_data)
file.close()
print("Your password is not right,please try it again!")
print("Do you want to try it again......")
flag = input("Please input you think:")
if flag == "N":
go = False
# 重置输入次数
else:
file = open("C:/Users/Lenovo/Desktop/user.txt","w")
print(file_data)
file.write(file_data)
file.close()
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
