【Python】Python支持哪些循环结构?

Python支持以下几种循环结构:

  1. while循环
    当条件满足时,重复执行循环体内代码块。
python
count = 0
while count < 5:
    print(count)  
    count += 1
  1. for循环
    用于迭代遍历列表、元组等可迭代对象。
python 
for i in [1, 2, 3]:
    print(i)
  1. range循环
    用于生成整数数列进行循环。
python
for i in range(5):
    print(i)
  1. 循环嵌套
    while、for循环可以相互嵌套。
python
for i in range(2):
    for j in range(3):
        print(i, j)
  1. break和continue
    break用于立即退出循环,continue用于跳过当次循环。

这些循环结构可以组合使用,实现任意复杂的循环逻辑。