当前分类:python>>正文

利用 Python 中的 for 循环实现迭代

来源:互联网   更新时间:2023年7月23日  

Python 笔记

一、for 循环简介

Python 中的 for 循环是一种强大的迭代工具,可以对任何可迭代对象进行迭代,例如列表、元组、字符串和字典等。for 循环的语法结构如下:

for 变量 in 可迭代对象:
    循环体

其中,变量是循环变量,可以在循环中使用;可迭代对象可以是列表、元组、字符串或字典等。

二、使用 for 循环迭代列表

在 Python 中,使用 for 循环可以轻松迭代列表。

fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
    print(fruit)

输出结果为:

apple
banana
cherry

在上面的代码中,我们定义了一个列表 fruits,使用 for 循环迭代该列表,并将列表中的元素输出。

三、使用 for 循环迭代元组

元组(tuple)与列表类似,也可以用 for 循环进行迭代。不过,元组是不可变的,因此一般情况下只用于存储一些不可变的数据。

fruits = ("apple", "banana", "cherry")
for fruit in fruits:
    print(fruit)

输出结果为:

apple
banana
cherry

在上面的代码中,我们定义了一个元组 fruits,使用 for 循环迭代该元组,并将元组中的元素输出。

四、使用 for 循环迭代字符串

Python 中的字符串也可以使用 for 循环进行迭代。

str = "hello world"
for char in str:
    print(char)

输出结果为:

h
e
l
l
o

w
o
r
l
d

在上面的代码中,我们定义了一个字符串 str,使用 for 循环迭代该字符串,并将字符串中的每个字符输出。

五、使用 for 循环迭代字典

字典也可以通过 for 循环进行迭代。循环遍历的是字典中的键。

my_dict = {"name": "John", "age": 25, "gender": "male"}
for key in my_dict:
    print(key, my_dict[key])

输出结果为:

name John
age 25
gender male

在上面的代码中,我们定义了一个字典 my_dict,使用 for 循环迭代该字典,并将字典中的每个键和键所对应的值输出。

六、使用 for 循环进行列表推导

除了常规的 for 循环,Python 还提供了列表推导式,可以让我们更方便地使用 for 循环来创建列表。

numbers = [1, 2, 3, 4, 5]
squares = [x ** 2 for x in numbers]
print(squares)

输出结果为:

[1, 4, 9, 16, 25]

在上面的代码中,我们使用 for 循环遍历列表 numbers 中的每个元素,并使用该元素的平方来构造新列表 squares。

七、使用 for 循环进行条件过滤

除了用 for 循环进行列表推导,还可以使用 for 循环进行条件过滤。

numbers = [1, 2, 3, 4, 5]
even_numbers = [x for x in numbers if x % 2 == 0]
print(even_numbers)

输出结果为:

[2, 4]

在上面的代码中,我们使用 for 循环遍历列表 numbers 中的每个元素,并使用 if 语句过滤出偶数,构造新列表 even_numbers。

八、使用 for 循环并行迭代多个序列

Python 的 for 循环还支持对多个序列进行并行迭代。被迭代的序列必须拥有相同的长度。

fruits = ["apple", "banana", "cherry"]
prices = [1.2, 3.4, 5.6]
for fruit, price in zip(fruits, prices):
    print(fruit, price)

输出结果为:

apple 1.2
banana 3.4
cherry 5.6

在上面的代码中,我们使用 for 循环并行迭代 fruits 和 prices 两个列表,并输出每个水果对应的价格。

九、结语

在 Python 中,for 循环是一种非常强大的迭代工具,可以用于迭代列表、元组、字符串和字典等。除了常规的 for 循环外,Python 还提供了列表推导式和条件过滤等语法结构,可以让我们更加方便地使用 for 循环来处理数据。

本文固定链接:https://6yhj.com/leku-p-5017.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 站长工具