登录认证程序

Posted kris12

tags:

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

 

作业需求

基础需求:
让用户输入用户名密码
认证成功后显示欢迎信息
输错三次后退出程序

升级需求:
可以支持多个用户登录 (提示,通过列表存多个账户信息)
用户3次认证失败后,退出程序,再次启动程序尝试登录时,还是锁定状态(提示:需把用户锁定的状态存到文件里)

代码

# -*- coding:utf-8 -*-
#Author:Kris

# count = 0
# _username = "kris"
# _passworld = "abc123"
# while count < 3:
#     username = input("username:")
#     passworld = input("passworld:")
#     if username == _username and passworld == _passworld:
#         print("Welcome to login in !")
#         break
#     else:
#         print("您的输入有误,请重新输入")
#     count += 1

#升级需求
count = 0
_names = ["kris","andy"]
_passworlds = ["abc123","123e"]
while count < 3:
    username = input("username:")
    passworld = input("passworld:")
    if username == "kris" and passworld == "abc123":
        print("Welcome kris loggin in...")
        break
    elif username == "andy" and passworld == "123e":
        print("Welcome andy loggin in...")
        break
    else:
        print("您的输入有误,请重新输入")
    count += 1

 

以上是关于登录认证程序的主要内容,如果未能解决你的问题,请参考以下文章

从片段调用 Google Play 游戏服务

pbootcms对接微信扫码登录代码核心片段和步骤(前后端)

更改片段内布局的按钮

302 登录重定向后被 IE 删除的 URL 片段

片段无法转换为 java.util.concurrent.Executor 错误

在哪里以及如何使用片段填充我的标签