031004 for 循环

Posted azxsdcv

tags:

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

# EXAMPLE_NUM01

for i in range(10):
print("loop ", i)

# i 是一个 临时变量 从 0 开始循环
# range 相当于 变量的一组数据

# EXAMPLE_NUM02

age_of_oldboy = 56
for i in range(3):
guess_age = int(input("guess age:")) # input 输入默认为 字符串
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: # else 相当于 代码正常走完了,如果不正常,则 break 了,就破坏循环,不执行了
print("you have tried too many times...damn the hell")

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

两个for循环执行顺序

for循环执行顺序?

jQuery之for循环

for循环,for...in循环,forEach循环的区别

for循环,for…in循环,forEach循环的区别

for循环与forEach循环的区别