pythonfor循环
时间: 2023-10-14 15:31:10 浏览: 102
在 Python 中,for 循环可以用于迭代遍历序列(列表、元组、字符串等)或其他可迭代对象(如字典、集合等)的元素。for 循环语法如下:
```python
for 变量名 in 可迭代对象:
循环体代码
```
其中,变量名是用于存储每个元素的变量名,可迭代对象是需要遍历的序列或其他可迭代对象,循环体代码是需要重复执行的代码块。
例如,遍历一个列表并打印出列表中的所有元素:
```python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
输出结果:
```
apple
banana
cherry
```
又如,遍历一个字符串并打印出字符串中的每个字符:
```python
str = "hello, world"
for char in str:
print(char)
```
输出结果:
```
h
e
l
l
o
,
w
o
r
l
d
```
阅读全文