打赏

python-循环

循环

1. for循环

语法:

for 变量 in 取值列表:
	执行操作

示例:

# range(5),默认从0开始,生成到5之前的数字结束
for i in range(5):
	print("执行操作")
-----------------------------------------
# range(1,5) 从1开始,生成到5之前的数字结束
for i in range(1,5):
	print("从%s次循环开始" % i)
	print("---------------")
	print("第%s次循环结束" % i)

2.循环的中断

2.1 continue

continue:中断本次循环,立刻开始下一次循环

for i in range(1,5):
	print("i=%s" % i)
	if i == 2:
		continue
	print("i=%s" % i)

break: 中断所有循环

for i in range(1,5):
	print("i=%s" % i)
	if i == 2:
		break
	print("i=%s" % i)

3.while循环

语法:

while 条件:
	执行操作
---------------
while True:
	执行操作

示例:

i = 1
while i<=3:
	print("while循环")
	i = i + 1
-----------------------------
import time
while True
	print("while循环")
	time.sleep(0.5)
posted @ 2021-10-23 10:55  苍山落暮  阅读(65)  评论(0编辑  收藏  举报