05.for循环语句

Posted Python学习之路

tags:

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

#!/usr/bin/env python
#coding:utf8
#Author:Felix zheng
 
age_of_felix = 32
count = 0
for i in range(3):
guess_age = int(input("guess age:"))
if guess_age == age_of_felix:
print("yes,you got it.")
break
elif guess_age < age_of_felix:
print("think smaller!")
else:
print("think bigger!")
 
count +=1
else:
print("you have tried too many times... shutdown")

以上是关于05.for循环语句的主要内容,如果未能解决你的问题,请参考以下文章

Python中for语句循环执行次数怎么求?

JavaScript的循环语句

shell编程之case分支语句,for循环语句和while循环语句

for和while循环语句

for循环完直接执行下一条语句吗?

for循环完了,怎么不执行后面语句?