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

python3.5模拟登陆

时间:2018-01-13 22:28:44      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:print   python3.5   while循环   try   post   ==   div   span   +=   

python3.5模拟登陆要求:

1、三次登陆认证;

2、输入正确--->欢迎;

3、输入错误--->密码或账户有误;

4、如果想继续--->选择y或Y。

 

思路:

1、创建账户和密码;

2、用while循环,count计数;

3、输入正确时,跳出循环(break);

4、挡count=3时,要重新计数(count置0)。

 

 

 

count = 0
age = 22

while count < 3:
    user_guess = int(input("you guess:"))
    if user_guess == age :
        print("you are right!")
        break
    elif user_guess < age :
        print("try bigger")
    else :
        print("try smaller")
    count += 1

    if count == 3 :
        choice = input("please choice?:(y|Y):")
        if choice == y or choice == Y:
            count = 0

 

python3.5模拟登陆

标签:print   python3.5   while循环   try   post   ==   div   span   +=   

原文地址:https://www.cnblogs.com/wangkun-251938485/p/8280528.html

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