Python学习作业之登陆接口_While

Posted

tags:

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

作业:编写登陆接口

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

# Author:Bryce_Zhang
username = ‘1‘
password = ‘2‘
count = 0
while count <4:
    users = input("users:")
    pass1 = input("pass:")
    if  users == username and pass1 == password:
        print("登陆成功......")
        break
    else:
        if count ==3:
            print("您的账户已锁定!")
            break
        count +=1


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

python之编写登陆接口(测试中...)

python作业:编写登陆接口

Python之编写登录接口

2017-08-21Python作业

python之编写登陆接口

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