猜年龄---for循环

Posted

tags:

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

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author:Andy Chen

age_of_oldboy = 56

for i in range(3):
guess_age = int(raw_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 many times....fuck off")

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

python之判断年龄是否正确

Python学习之for循环

Day1:循环语句(While,For)

pytthon基础第一天——if判断while循环for循环python字符串

python学习第二天

Python-while循环和for循环