Python学习作业之登陆接口_For

Posted

tags:

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

作业:编写登陆接口

要求: 输入正确则显示欢迎信息,输入错误三次则锁定.

# Author:Bryce_Zhang
username = "1"
password = "2"
for i in range(4):
    users = input("users:")
    pass1 = input("pass1:")
    if users == username and pass1 == password:
        print("账户密码正确登陆成功!")
        break
    else:
        if i == 3:
           print("您的账户已经锁定!")
           break
        i +=1


以上是关于Python学习作业之登陆接口_For的主要内容,如果未能解决你的问题,请参考以下文章

python作业:编写登陆接口

Python之编写登录接口

python之编写登陆接口

2017-08-21Python作业

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

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