python猜年龄

Posted mahaigang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python猜年龄相关的知识,希望对你有一定的参考价值。

#若输入年龄正确,完成循环,最多只能输入三次,停止本次循环(使用while循环)
age = 28
count = 0

while count<3:
_age = int(input("age:"))

if _age==age:
print("you got it!")
break
elif _age>age:
print("think smaller")
else:
print("think bigger")
count +=1
else:

print("you tried many times")
#若输入年龄正确,完成循环,最多只能输入三次,停止本次循环(使用for循环)
age = 28

for i in range(3):
_age = int(input("age:"))

if _age==age:
print("you got it!")
break

elif _age>age:
print("think smaller")

else:
print("think bigger")

else:
print("you tried many times")

































以上是关于python猜年龄的主要内容,如果未能解决你的问题,请参考以下文章

python脚本猜年龄

python猜年龄

Python 猜年龄的游戏

用Python写猜年龄游戏

Python—猜年龄游戏升级版

python 用while 猜年龄