【Python】循环语句(while、for)、continue、break
在 Python 中,循环语句用于重复执行一段代码,直到满足某个条件为止。常用的循环语句有 while
和 for
。
语法:
Python
while 条件:
# 要重复执行的代码块
执行过程:
示例:
Python
count = 0
while count < 5:
print(count)
count += 1
语法:
Python
for 元素 in 序列:
# 要重复执行的代码块
执行过程:
元素
。示例:
Python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
continue: 跳过当前循环的剩余部分,直接进入下一次循环。
break: 终止整个循环,跳出循环体。
示例:
Python
for i in range(10):
if i % 2 == 0:
continue # 跳过偶数
print(i)
for i in range(10):
if i == 5:
break # 循环到5时停止
print(i)
| 语句 | 作用