猜年龄小程序

时间:2018-08-13 22:08:32   收藏:0   阅读:192

第一版,缺点只能猜一次。

age_of_archerzon = 22

guess_age = int(input("guess age:"))

if guess_age == age_of_archerzon:
    print("yes,you got it!")
   break
elif guess_age > age_of_archerzon: print("think it smaller!") else: print("think it bigger!")

 

第二版,通过运用while循环实现了猜3次后退出。

 

优化版,将while循环改为for循环,

age_of_archerzon = 22

for i in range(3):
    guess_age = int(input("guess_age"))
    if guess_age == age_of_archerzon:
        print("yes,you got it!")
        break
    elif guess_age > age_of_archerzon:
        print("think it smaller!")
    else:
        print("think it bigger!")

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!