Joe081229 发表于 2020-6-11 21:34:07

continue

continue怎么用,是干嘛的

Twilight6 发表于 2020-6-11 21:37:19

本帖最后由 Twilight6 于 2020-6-11 21:45 编辑


continue :终止本次循环,开始下次循环

break :终止并退出循环

举例子

break:
for i in range(10):
    if i == 5:
      print('执行了break,直接退出循环,不在继续执行啦!')
      break
    print(i)
打印结果:0
1
2
3
4
执行了break,直接退出循环,不在继续执行啦!


continue:
for i in range(10):
    if i == 5:
      print('执行了continue,直接终止循环,开始下次循环,所以下面的代码不会打印啦~也就是不会打印 5 啦')
      continue
    print(i)
打印结果:0
1
2
3
4
执行了continue,直接终止循环,开始下次循环,所以下面的代码不会打印啦~也就是不会打印 5 啦
6
7
8
9

Joe081229 发表于 2020-6-11 21:58:45

谢谢
页: [1]
查看完整版本: continue