python循环遍历语句
时间: 2023-10-26 19:08:02 浏览: 80
可以使用for循环或者while循环来遍历。for循环使用range函数来生成索引序列,while循环则要使用一个计数器或者其他条件来控制循环的次数或是否结束循环。例如:
for i in range(10):
print(i)
或
i = 0
while i < 10:
print(i)
i += 1
相关问题
Python用遍历语句输出字符串序列和内容
可以使用 for 循环遍历字符串序列,然后使用 print 函数输出每个字符串的内容,示例代码如下:
```
str_list = ['hello', 'world', 'python']
for s in str_list:
print(s)
```
输出结果为:
```
hello
world
python
```
普通的Python循环遍历
Python中有多种循环遍历的方式,最常用的是 `for` 循环和 `while` 循环。
### for 循环
使用 `for` 循环可以遍历任何序列对象,如字符串、列表、元组等。
语法:
```python
for 变量 in 序列:
执行语句...
```
示例:
```python
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
```
输出:
```
apple
banana
cherry
```
### while 循环
`while` 循环会在条件为真的情况下重复执行一段代码,直到条件为假。
语法:
```python
while 条件:
执行语句...
```
示例:
```python
i = 0
while i < 5:
print(i)
i += 1
```
输出:
```
0
1
2
3
4
```
在上面的示例中,当 `i` 小于 5 时,会一直执行循环体中的代码,每次 `i` 的值都会增加 1,直到 `i` 不再小于 5 为止。
阅读全文