Skip to content

遍历字符串

forwhile 语句可用于遍历字符串。

使用 for

由于字符串是字符序列,因此可以使用 for 语句遍历字符串,如下所示。

代码

python
name = "python"
for char in name:
    print(char)

输出

p
y
t
h
o
n

使用 while

可以使用 while 语句通过迭代索引值直到最后一个字符索引来遍历字符串。

代码

python
name = "python"
i = 0
while i < len(name):
    print(name[i])
    i += 1

输出

p
y
t
h
o
n