码迷,mamicode.com
首页 > 编程语言 > 详细

python 编写登陆接口

时间:2017-09-09 00:47:08      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:输入密码   int   usr   odi   not   bin   input   count   utf-8   

#!/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 编写登陆接口

标签:输入密码   int   usr   odi   not   bin   input   count   utf-8   

原文地址:http://www.cnblogs.com/tianlive/p/7496896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!