python实现简单登陆流程的方法

作者:郑子明 时间:2021-01-30 00:48:24 

登陆流程图:

python实现简单登陆流程的方法

代码实现:


#-*- coding=utf-8 -*-
import os,sys,getpass
'''
user.txt 格式
账号 密码 是否锁定 错误次数
jack 123 unlock 0
tom 123 unlock 0
lily 123 unlock 0
hanmeimei 123 unlock 0
lucy 123 unlock 0
'''
# 定义写入文件的函数
def wirte_to_user_file(users,user_file_path):
user_file = file(user_file_path,'w+')
for k,v in users.items():
line = []
line.append(k)
line.extend(v)
user_file.write(' '.join(line)+'\n')
user_file.close()
# 判断用户文件是否存在,不存在直接退出
user_file_path = 'users.txt'
if os.path.exists(user_file_path):
user_file = file(user_file_path,'r')
else:
print 'user file is not exists'
sys.exit(1)
# 遍历用户文件,将用户包装成字典
users_dic = {}
for user_line in user_file:
user = user_line.strip().split()
users_dic[user[0]] = user[1:]
'''
{
'lucy': ['123', 'unlock', '0'],
'lily': ['123', 'unlock', '0'],
'jack': ['123', 'unlock', '0'],
'hanmeimei': ['123', 'unlock', '0'],
'tom': ['123', 'unlock', '0']
}
'''
while True:
# 输入账号
input_name = raw_input('please input your username,input "quit" or "q" will be exit : ').strip()
# 判断是否为退出
if input_name == 'quit' or input_name == 'q':
sys.exit(0)
# 输入密码
password = getpass.getpass('please input your password:').strip()
# 判断账号是否存在、是否锁定
if input_name not in users_dic:
print 'username or password is not right'
break

if users_dic[input_name][1] == 'lock':
print 'user has been locked'
break

# 判断密码是否正确,正确,登陆成功
if str(password) == users_dic[input_name][0]:
print 'login success,welcome to study system'
sys.exit(0)
else:
# 如果密码错误则修改密码错误次数
users_dic[input_name][2] = str(int(users_dic[input_name][2])+1)
# 密码错误次数大于3的时候则锁定,并修改状态

if int(users_dic[input_name][2]) >= 3:
print 'password input wrong has 3 times,user will be locked,please connect administrator'
users_dic[input_name][1] = 'lock'
wirte_to_user_file(users_dic,user_file_path)
break

wirte_to_user_file(users_dic,user_file_path)

来源:https://blog.csdn.net/reblue520/article/details/55510225

标签:python,登陆
0
投稿

猜你喜欢

  • python使用matplotlib绘制图片时x轴的刻度处理

    2022-05-05 01:38:56
  • numpy.transpose对三维数组的转置方法

    2023-10-11 07:32:36
  • Hadoop分布式集群的搭建的方法步骤

    2022-06-08 06:02:42
  • python密码错误三次锁定(实例讲解)

    2022-03-02 07:51:23
  • 趁热打铁!HTTPGet与HTTPPost的区别详解

    2022-07-15 02:46:00
  • 利用phpmyadmin设置mysql的权限方法

    2023-11-24 02:12:46
  • 使用JDBC在MySQL数据库中如何快速批量插入数据

    2024-01-18 04:04:13
  • Redis有序集合类型的操作_动力节点Java学院整理

    2024-01-27 23:06:47
  • Python 字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、分割等)

    2021-01-12 08:30:45
  • Python打印三角形九九乘法表代码

    2021-11-16 03:27:15
  • 浅析python中5个带key的内置函数

    2021-08-27 00:31:25
  • 深入了解SQL Server 2008 商业智能平台

    2009-01-15 13:03:00
  • JavaScript字符串对象toLowerCase方法入门实例(用于把字母转换为小写)

    2024-05-08 10:10:47
  • JS+CSS实现仿雅虎另类滑动门切换效果

    2024-04-17 10:34:55
  • Python 取numpy数组的某几行某几列方法

    2023-11-24 05:46:47
  • Javascript 闭包[翻译]

    2008-09-28 20:59:00
  • 基于python-pptx库中文文档及使用详解

    2023-11-30 12:06:13
  • python SVD压缩图像的实现代码

    2023-04-18 18:23:30
  • 基于事件冒泡、事件捕获和事件委托详解

    2024-04-28 09:43:33
  • 绿色版 mysql 安装配置

    2024-01-20 23:05:01
  • asp之家 网络编程 m.aspxhome.com