python 循环

Posted fengzi7314

tags:

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

Python 循环语句

本章节将向大家介绍Python的循环语句,程序在一般情况下是按顺序执行的。

编程语言提供了各种控制结构,允许更复杂的执行路径。

循环语句允许我们执行一个语句或语句组多次,下面是在大多数编程语言中的循环语句的一般形式:

 

for循环:

for letter in Python:     # 第一个实例
   print(当前字母 :, letter)
 
fruits = [banana, apple,  mango]
for fruit in fruits:        # 第二个实例
   print(当前水果 :, fruit)

 

while循环:

count = 0
while (count < 9):
   print(The count is:, count)
   count = count + 1

 

break语句

for letter in Python:     # 第一个实例
   if letter == h:
      break
   print(当前字母 :, letter)

 

continue语句

for letter in Python:     # 第一个实例
   if letter == h:
      continue
   print(当前字母 :, letter)

 

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

Python - 循环加速 - 大型数据集

Python之如何优雅的重试

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

AVKit – 视频片段仅循环 2 次

如何使用事件侦听器来加载动画片段的循环

python中的while循环与for循环怎么样那个比较好用?