编写登陆接口

Posted

tags:

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

 

编写登陆接口:

    输入用户名密码
    认证成功后显示欢迎信息
    输错三次后锁定

 技术分享

 

 1 #!/usr/bin/env python
 2 # -*- coding:utf-8 -*-
 3 
 4 
 5 name = "mike"
 6 pswd = "1"
 7 import getpass
 8 count = 0
 9 while count < 3:
10     user_input = input("请输入姓名:")
11     pswd_input = getpass.getpass("请输入密码:")
12     if user_input == name and pswd_input == pswd:
13         print("欢迎!")
14         break
15     elif user_input != name:
16         print("用户名错误!")
17     else:
18         print("密码错误!")
19     count += 1
20 else:
21     print("超过次数限制!")

 





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

编写登陆接口

编写登陆接口

day1作业:编写登陆接口

python学习基础篇--编写登陆接口

使用 Python 编写登陆接口

python之编写登陆接口