Python 简明教程

Python - For Loops

在 Python 中, for loop 可循环遍历任何序列(例如列表、元组或字符串)中的项。它对序列的每一项执行相同的操作。此循环以 for 关键字开头,后跟一个变量(用于表示序列中的当前项)。 in 关键字将变量链接到你想要迭代的序列。 colon (:) 用在循环头的末尾,其下方的缩进代码块将针对序列中的每一项执行一次。

Syntax of Python for Loop

for iterating_var in sequence:
   statement(s)

在这里,iterating_var 是一个变量,将在每次迭代期间为其分配每个序列项的值。Statements 表示你希望重复执行的代码块。

在循环开始前,将评估序列。如果它是一个列表,则首先评估表达式列表(如有)。然后,将序列中的第一个项(在索引 0 处)分配给 iterating_var 变量。

在每次迭代期间,使用 iterating_var 的当前值执行语句块。在此之后,将序列中的下一项分配给 iterating_var,循环将继续进行,直至整个序列都用尽。

Flowchart of Python for Loop

以下流程图说明了 for 循环的工作原理 −

forloop

Python for Loop with Strings

string 是一个 Unicode 字母序列,每个字母都有一个位置索引。因为它是序列,所以你可以使用 for 循环遍历其字符。

Example

以下示例比较每个字符,并显示它是否不是元音('a'、'e'、'i'、'o'、'u')。

zen = '''
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
'''
for char in zen:
   if char not in 'aeiou':
      print (char, end='')

执行此代码后,会生成以下输出 −

Btfl s bttr thn gly.
Explct s bttr thn mplct.
Smpl s bttr thn cmplx.
Cmplx s bttr thn cmplctd.

Python for Loop with Tuples

Python’s tuple 对象也是索引序列,因此你可以使用 for 循环遍历其项。

Example

在以下示例中,for 循环遍历包含整数的元组,并返回所有数字的总和。

numbers = (34,54,67,21,78,97,45,44,80,19)
total = 0
for num in numbers:
   total += num
print ("Total =", total)

运行这段代码时,它将产生以下输出 −

Total = 539

Python for Loop with Lists

Python’s list 对象也是索引序列,因此你可以使用 for 循环遍历其项。

Example

在以下示例中,for 循环遍历包含整数的列表,并且仅打印可被 2 整除的那些整数。

numbers = [34,54,67,21,78,97,45,44,80,19]
total = 0
for num in numbers:
   if num%2 == 0:
      print (num)

当你执行代码时,将显示以下结果 −

34
54
78
44
80

Python for Loop with Range Objects

Python 的内置 range() 函数返回一个迭代器对象,该对象流式传输一个数字序列。该对象包含从 start 到 stop 的整数(以 step 参数分隔)。你也可以使用 for 循环运行 range。

Syntax

range() 函数具有以下语法 −

range(start, stop, step)

其中,

  1. Start − 范围的起始值。可选项。默认为 0

  2. Stop − 范围达到 stop-1

  3. Step − 范围中的整数以步长值递增。选项,默认为 1。

Example

在这个示例中,我们将看到 range 与 for 循环一起使用。

for num in range(5):
   print (num, end=' ')
print()
for num in range(10, 20):
   print (num, end=' ')
print()
for num in range(1, 10, 2):
   print (num, end=' ')

当运行以上代码时,它会产生以下输出 −

0 1 2 3 4
10 11 12 13 14 15 16 17 18 19
1 3 5 7 9

Python for Loop with Dictionaries

与列表、元组或字符串不同,Python 中的 dictionary 数据类型不是序列,因为项目没有位置索引。但是,仍然可以使用 for 循环遍历字典。

Example

对字典对象运行一个简单的 for 循环可遍历其中使用的键。

numbers = {10:"Ten", 20:"Twenty", 30:"Thirty",40:"Forty"}
for x in numbers:
   print (x)

执行后,此代码将会产生以下 output

10
20
30
40

一旦获取到键,就可以通过使用方括号运算符或 get() 方法轻松访问与其关联的值。

Example

以下示例说明了上述方法。

numbers = {10:"Ten", 20:"Twenty", 30:"Thirty",40:"Forty"}
for x in numbers:
   print (x,":",numbers[x])

它将生成以下 output

10 : Ten
20 : Twenty
30 : Thirty
40 : Forty

dict 类的 items()、keys() 和 values() 方法分别返回视图对象 dict_items、dict_keys 和 dict_values。这些对象是迭代器,因此我们可以使用 for 循环来遍历它们。

Example

dict_items 对象是一个可以像下面这样遍历键值元组的列表——

numbers = {10:"Ten", 20:"Twenty", 30:"Thirty",40:"Forty"}
for x in numbers.items():
   print (x)

它将生成以下 output

(10, 'Ten')
(20, 'Twenty')
(30, 'Thirty')
(40, 'Forty')

Using else Statement with For Loop

Python 支持将一个 else 语句与一个循环语句关联。但是,在循环耗尽列表的迭代时执行 else 语句。

Example

以下示例说明了 else 语句与 for 语句的组合,它用于搜索 10 到 20 之间素数。

#For loop to iterate between 10 to 20
for num in range(10, 20):
   #For loop to iterate on the factors
   for i in range(2,num):
      #If statement to determine the first factor
      if num%i == 0:
         #To calculate the second factor
         j=num/i
         print ("%d equals %d * %d" % (num,i,j))
         #To move to the next number
         break
      else:
         print (num, "is a prime number")
         break

执行上述代码后,将生成以下结果 −

10 equals 2 * 5
11 is a prime number
12 equals 2 * 6
13 is a prime number
14 equals 2 * 7
15 equals 3 * 5
16 equals 2 * 8
17 is a prime number
18 equals 2 * 9
19 is a prime number