python如何写for循环
时间: 2023-10-18 10:01:41 浏览: 157
python中的for循环
Python中的for循环可以使用关键字for和in来实现,语法如下:
```python
for 变量名 in 序列:
循环体语句
```
其中,变量名为循环控制变量,序列可以是列表、元组、字符串等可迭代对象。循环体语句是需要重复执行的代码块。
示例:
```python
# 遍历列表
lst = [1, 2, 3, 4, 5]
for num in lst:
print(num)
# 遍历字符串
str = "hello"
for c in str:
print(c)
# 遍历元组
tup = (6, 7, 8, 9, 10)
for num in tup:
print(num)
```
阅读全文