成都网站建设设计

将想法与焦点和您一起共享

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")

本文名称:python循环
标题路径:http://chengdu.cdxwcx.cn/article/jhehhj.html