白云岛资源网 Design By www.pvray.com
本文实例讲述了Python实现账号密码输错三次即锁定功能。分享给大家供大家参考,具体如下:
初学Python—1
#实现账号输错三次即锁定 user = "hubery" passwd = "123" confirm = 0 lock=0 fileOpen = open("username.txt","a+") fileOpen.seek(0) for i in range(3): username = input("username:") passsword = input("password:") for line in fileOpen.readlines(): if username == line.strip(): print("账户已经锁定!") lock=1 break else: continue fileOpen.seek(0) if user == username and lock ==0: if passwd == passsword: print("欢迎,欢迎!") confirm = 1 break else: print("账号户或者密码错误!") continue elif lock==1: continue else: print("1账号或者密码错误!") continue fileOpen.close() if confirm == 0 and lock==0: fileWrite=open("username.txt","a") fileWrite.write(username+"\n") fileWrite.close()
基本功能可以实现;
锁定的账号为第三次输错的用户名(待完善)
以下为完善版本,如有错误,请告知
import os user = "hubery" passwd = "123" count = 0 lock = 0 fileOpen = open("username.txt", "a+") fileOpen.seek(0) while 1: for i in range(5): username = input("username:") passsword = input("password:") for line in fileOpen.readlines(): if username == line.strip(): print("账户已经锁定!") lock = 1 break else: continue fileOpen.seek(0) if user == username: if lock == 1: continue elif passsword == passwd: print("欢迎,欢迎!") os._exit(0) elif count < 2: print("账号或者密码错误!") count += 1 continue else: fileOpen.write(username + "\n") fileOpen.flush() print("密码输入错误超过三次,账户已经锁定!") fileOpen.seek(0) continue else: print("账号密码错误!") continue check=input("还想验证其他账户?(yes-继续,no-退出)") if "no"==check.lower(): os._exit(0) else: continue fileOpen.close()
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python数据结构与算法教程》、《Python编码操作技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python入门与进阶经典教程》
希望本文所述对大家Python程序设计有所帮助。
白云岛资源网 Design By www.pvray.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
白云岛资源网 Design By www.pvray.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。