1.输入用户名密码;
2.认证成功后显示欢迎信息;
3.错误三次后,账号被锁定。
账号文件:user.txt
锁定文件:locked.txt
流程图如下:
# -*- coding:utf-8 -*-# Author Caoxlimport sysaccount_file='E:\user.txt'locked_file='E:\locked.txt'def deny_account(username): print('您的用户已被锁定') with file(locked_file,'a') as deny_f: deny_f.write('\n'+username)def main(): retry_count=0 retry_limit=3 #循环次数 while retry_count