python for循环 字符串数组
时间: 2024-04-11 11:25:11 浏览: 287
python for循环
Python中的for循环可以用于遍历字符串和数组。下面是对Python for循环的介绍:
1. 遍历字符串:
在Python中,字符串被视为字符的序列,可以使用for循环逐个访问字符串中的字符。例如:
```python
string = "Hello, World!"
for char in string:
print(char)
```
输出结果为:
```
H
e
l
l
o
,
W
o
r
l
d
!
```
2. 遍历数组:
在Python中,可以使用for循环遍历数组中的元素。例如:
```python
array = [1, 2, 3, 4, 5]
for element in array:
print(element)
```
输出结果为:
```
1
2
3
4
5
```
阅读全文