python 入门 guess 函数

猜年龄限制次数,使用while函数和count计数器。

age_of_spencer = 28
count = 0
while True:
    if count == 2:
        break
    age = int(input("age:"))
    if age == age_of_spencer:
        print("you made it")
        break
    elif age >= age_of_spencer:
        print("too big")
    else:
        print("too small")
    count = count + 1
if count==2:
    print("you had tried too many times")

 

posted on 2018-05-21 10:00  你是不夜星空  阅读(1963)  评论(0编辑  收藏  举报

导航