admin 管理员组

文章数量: 887021


2024年2月26日发(作者:jsp网上购物系统代码)

python中for循环例子

Python中的for循环是一种常用的循环结构,用于遍历一个可迭代对象(如列表、元组、字符串等)中的每个元素,并执行指定的操作。下面将列举10个符合要求的for循环的例子。

1. 遍历列表中的元素

```python

fruits = ['apple', 'banana', 'orange']

for fruit in fruits:

print(fruit)

```

输出结果:

```

apple

banana

orange

```

2. 遍历元组中的元素

```python

colors = ('red', 'green', 'blue')

for color in colors:

print(color)

```

输出结果:

```

red

green

blue

```

3. 遍历字符串中的字符

```python

message = "Hello, world!"

for char in message:

print(char)

```

输出结果:

```

H

e

l

l

,

w

o

r

l

d

!

```

4. 遍历字典中的键

```python

person = {'name': 'John', 'age': 25, 'gender': 'male'}for key in person:

print(key)

```

输出结果:

```

name

age

gender

```

5. 遍历字典中的值

```python

person = {'name': 'John', 'age': 25, 'gender': 'male'}

for value in ():

print(value)

```

输出结果:

```

John

25

male

```

6. 遍历字典中的键值对

```python

person = {'name': 'John', 'age': 25, 'gender': 'male'}for key, value in ():

print(key, value)

```

输出结果:

```

name John

age 25

gender male

```

7. 遍历范围内的数字

```python

for i in range(1, 6):

print(i)

```

输出结果:

```

1

2

3

4

5

```

8. 遍历列表中的索引和对应的元素

```python

fruits = ['apple', 'banana', 'orange']

for i, fruit in enumerate(fruits):

print(i, fruit)

```

输出结果:

```

0 apple

1 banana

2 orange

```

9. 遍历多个列表的元素

```python

names = ['Alice', 'Bob', 'Charlie']

ages = [25, 30, 35]

for name, age in zip(names, ages):

print(name, age)

```

输出结果:

```

Alice 25

Bob 30

Charlie 35

```

10. 遍历集合中的元素

```python

fruits = {'apple', 'banana', 'orange'}

for fruit in fruits:

print(fruit)

```

输出结果:

```

banana

apple

orange

```

通过以上10个例子,我们可以看到for循环的灵活性和适用性。它可以用来遍历不同类型的数据结构,处理不同的需求。在实际应用中,我们可以根据具体的情况选择合适的for循环方式,并结合其他语句或函数来完成更复杂的任务。熟练掌握for循环的用法,对于编写高效、简洁的Python代码非常重要。


本文标签: 遍历 循环 元素 列表 购物