python 的for 循环例子
Python中的for循环是一种重复执行特定代码块的结构。它用于遍历可迭代对象(如列表、元组、字符串等)中的元素,并对每个元素执行相应的操作。下面我将列举出10个使用Python的for循环的例子。
1. 遍历列表:可以使用for循环遍历一个列表中的元素,并对每个元素执行相应的操作。
```python
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
    print(fruit)
```
输出:
```
apple
banana
orange
```
2. 遍历字符串:可以使用for循环遍历一个字符串中的字符,并对每个字符执行相应的操作。
```python
string = 'Hello, World!'
for char in string:
    print(char)
```
输出:
```
H
e
l
l
,
W
o
r
l
d
!
```
3. 遍历元组:可以使用for循环遍历一个元组中的元素,并对每个元素执行相应的操作。
```python
tuple = (1, 2, 3)
for num in tuple:
    print(num)
```
输出:
```
1
2
3
```
4. 遍历字典的键:可以使用for循环遍历一个字典中的键,并对每个键执行相应的操作。
```python
dict = {'name': 'John', 'age': 25, 'city': 'New York'}
for key in dict:
    print(key)
python怎么读取txt
```
输出:
```
name
age
city
```
5. 遍历字典的值:可以使用for循环遍历一个字典中的值,并对每个值执行相应的操作。
```python
dict = {'name': 'John', 'age': 25, 'city': 'New York'}
for value in dict.values():

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。