python 编写登陆接口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 编写登陆接口相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
#_*_ coding:utf-8 _*_
dic={                      
‘yts‘:{‘password‘:‘123‘,‘count‘:0},
‘nick‘:{‘password‘:‘123‘,‘count‘:0},
‘test‘:{‘password‘:‘123‘,‘count‘:0},
}
while True:
name=input(‘请输入用户名: ‘)
if not name in dic:
print(‘用户不存在‘)
continue
if dic[name][‘count‘] > 2:
print(‘尝试过多,锁定‘)
continue
password=input(‘请输入密码: ‘)
if password == dic[name][‘password‘]:
print(‘登录成功欢迎用户%s‘ %name)
break
else:
print(‘用户名或密码错误‘)
dic[name][‘count‘]+=1





















以上是关于python 编写登陆接口的主要内容,如果未能解决你的问题,请参考以下文章

python之编写登陆接口

python 编写登陆接口

python作业:编写登陆接口

Python编写登陆接口

(Python)编写登陆接口

python之编写登陆接口(第一天)