Python学习之for循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习之for循环相关的知识,希望对你有一定的参考价值。
如何实现让用户不断猜年龄,但只给3次机柜,再猜不对就退出程序
age_of_oldboy = 56
count = 0
for i in range(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(‘think smaller...‘)
else:
print(‘think bigger..‘)
else:
print(‘you have tried too many times .. fuck off‘)
本文出自 “13243290” 博客,谢绝转载!
以上是关于Python学习之for循环的主要内容,如果未能解决你的问题,请参考以下文章