十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
#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")