第一周练习 --- 登陆程序

2018-06-18 01:50:33来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

#登陆程序

#Login——by Lief

username='Lief'
password='88888888'
count=0
while count<3:
    UN=input('Please type your username here: ')
    PW=input('Please type your password here: ')
    if UN==username and PW==password:
        print("You're in!")
        break
    else:
        print('Try again!')
        count+=1
else:
    print("You've tried too many times and you're locked!")

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:python3随笔day1

下一篇:Python+Selenium笔记(十七):操作cookie