python密码错误三次锁定

2018-06-17 23:31:20来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

程序需求:

  1. 输入用户名,密码
  2. 认证成功显示欢迎信息
  3. 输入错误三次后锁定用户

流程图:

  好像画的不咋地

查看代码:

#!/usr/bin/env python
# _*_ coding:utf-8 _*_
# File_type:一个登录接口
# Author:smelond
import os

username = "smelond"#用户名
password = "qweqwe"#密码
counter = 0#计数器

#读取黑名单
file = os.path.exists("./user.txt")#检查当前目录是否有user.txt这个文件,如果有者输出True赋给file
if file == True:#判断是否有user.txt这个文件
    blacklist_file = open("user.txt", "r").read()#open()打开文件,并且用read()读取文件,然后赋给blacklist_file
    if blacklist_file == username:#检查文件里面的内容是否和我们的用户名相等
        print("Username lock. Please contact the administrator to remove the restrictions!!!")#输出错误提示
        exit()#退出程序

#登录接口
for i in range(3):
    counter += 1#对每次登录进行计数
    input_user = input("Please input username: ")
    input_pass = input("Please input password: ")
    if input_user == username and input_pass == password:
        print("Welcome login...")
        break
    else:
        print("ERROR Incorrect username or password!!!")
        continue

#写入黑名单
if counter == 3:#判断我是否输入错误三次
    print("The user name has been disabled")#提示信息
    blacklist_user = open("user.txt", "a")#以追加模式打开 (从 EOF 开始, 必要时创建新文件)
    blacklist_user.write("%s" % username)#将用户名写入黑名单
    blacklist_user.close()#使用open后一定要记得调用文件对象的close()方法
代码

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Python学习之urllib库

下一篇:Python 编程核心知识体系-函数(二)