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

2017-08-21Python作业

时间:2017-08-22 00:23:35      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:python day1作业

编写一个登陆接口:

账户密码输入

认证成功后显示欢迎信息

输错3次后锁定

_username = 101645
_password = 101645
for i in range(100):
    username = int(input("username:"))
    password = int(input("password:"))
    if username == _username and password == _password:
        print("Wlcome to system")
        break
    if username != _username and password != _password:
        print("The users and password is error")
        if i == 2:
            print("the system is locking")
            break


2017-08-21Python作业

标签:python day1作业

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

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