031003 while 循环
Posted azxsdcv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了031003 while 循环 相关的知识,希望对你有一定的参考价值。
# EXAMPLE_NUM01
age_of_oldboy = 56
count = 0
while count < 3:
guess_age = int(input("guess age: "))
if guess_age == age_of_oldboy:
print("yes,you got it")
break
elif guess_age > age_of_oldboy:
print("guess the name smaller...")
else:
print("guess Bigger please..")
count += 1
else:
print("you have tried too many times already...")
以上是关于031003 while 循环 的主要内容,如果未能解决你的问题,请参考以下文章