python循環

#Author:LiPeijing

age_of_oldboy = 56
count = 0
while count < 3:
    gess_age = int(input("guess age:"))
    if gess_age == age_of_oldboy:
        print("yes, you got it")
        break
    elif gess_age > age_of_oldboy:
        print("think smaller")
    else:
        print("think bigger")
    count += 1
else:
    print("you have tired too many times..fuck off")


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章