python for循环
时间: 2023-10-12 16:11:20 浏览: 68
Python中的for循环用于遍历可迭代对象(例如列表、元组、字符串等)中的元素或执行指定次数的操作。
基本语法:
```
for 变量 in 可迭代对象:
循环体语句
```
示例:
```python
# 遍历列表
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
print(fruit)
# 遍历元组
languages = ('Python', 'Java', 'C++')
for language in languages:
print(language)
# 遍历字符串
for char in 'hello':
print(char)
# 执行指定次数的操作
for i in range(5):
print('hello')
```
输出:
```
apple
banana
orange
Python
Java
C++
h
e
l
l
o
hello
hello
hello
hello
hello
```
其中,`range()`函数用于创建一个由指定起始值和结束值的数字序列,可以用于指定循环次数。例如,`range(5)`将生成0、1、2、3、4这五个数字。在for循环中,可以使用`range()`函数的返回值作为循环次数。
阅读全文