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

Python学习作业之登陆接口_While

时间:2017-08-01 21:48:02      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:python

作业:编写登陆接口

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

# 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

原文地址:http://13717089481.blog.51cto.com/13168879/1952636

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