详解Python用户登录接口的方法
作者:qiyue0087 时间:2021-10-09 23:26:48
Readme:
blog address:
摘要:编写登录接口
输入用户名、密码
认证成功后显示欢迎信息
输错3次后锁定
关键词:循环;判断;外部数据读写;列表;字典;
展望:可以结合数据库读写。
codes:
# Author: Steven Zeng
'''
作业2:编写登录接口
输入用户名密码
认证成功后显示欢迎信息
输错3次后锁定
'''
print("welcome to here")
f1=open('username.txt')
f2=open('password.txt')
f3=open('error.txt')#建立一个Demo记录输错3次密码的用户,并对其锁定
username_true=f1.readlines()#readlines读取方式返回的是逐行一个元素的列表
password_true=f2.readlines()
un_error=f3.readlines()
f1.close()
f2.close()
f3.close()
UK={}
#建立一个字典形式为用户名对密码
for i in range(len(username_true)):
UK[str(username_true[i])]=str(password_true[i])#注:字典的键必须是不可变更型数据(常用整数和字符串)
# 而键值可以是数字也可以是字符串
#print(un_error)
#print(un_error.count(777+'\n')
#print(UK)
count=0
while count<3:
username = input("Please, input your username:")
password = input("Please, input your keywords")
if un_error.count(str(username+'\n'))>=3:
print("Out of trying, You are Locking!")
break
elif str(username+'\n') in UK and str(password+'\n')==UK.get(str(username+'\n')):
print("welcome to you, honorable customer!")
break
else:
print('''Invalid customer, please try again!
And you have {count_left1} times left!'''.format(count_left1=2-count))
f3=open('error.txt','a')#建立一个Demo记录输错3次密码的用户,并对其锁定
f3.write(username+'\n')
f3.close()
count += 1
以上所述是小编给大家介绍的Python用户登录接口的方法详解整合网站的支持!
来源:https://blog.csdn.net/qiyue0087/article/details/89192102
标签:Python,用户登录,接口
0
投稿
猜你喜欢
Python脚本实现自动将数据库备份到 Dropbox
2024-01-20 09:56:45
layui表单提交到后台自动封装到实体类的方法
2024-04-22 22:33:11
利用python判断字母大小写的几种方法小结
2022-05-10 16:41:49
python 列表递归求和、计数、求最大元素的实例
2023-01-07 13:28:07
快速图片链接批处理
2007-02-03 11:39:00
Oracle 9i轻松取得建表和索引的DDL语句
2010-07-16 13:09:00
详解MySql中InnoDB存储引擎中的各种锁
2024-01-13 10:40:32
python嵌套字典比较值与取值的实现示例
2023-12-25 01:28:35
PHP中soap的用法实例
2023-11-14 09:40:24
如何做一个可以让人家申请使用的计数器?
2010-07-11 21:17:00
python selenium 弹出框处理的实现
2022-12-05 14:19:19
python实现AES算法及AES-CFB8加解密源码
2022-06-14 01:24:01
ORACLE查询删除重复记录三种方法
2024-01-19 11:03:10
SQL Server CROSS APPLY和OUTER APPLY的应用详解
2024-01-21 02:27:21
python实现LBP方法提取图像纹理特征实现分类的步骤
2023-05-24 02:12:27
在Python的Bottle框架中使用微信API的示例
2022-06-02 00:12:47
NumPy实现ndarray多维数组操作
2023-07-14 13:56:50
python中rc1什么意思
2023-10-24 13:01:38
Boostrap栅格系统与自己额外定义的媒体查询的冲突问题
2024-04-16 08:59:46
vue中v-model如何绑定多循环表达式实战案例
2024-04-09 10:59:42