千家信息网

python 20171115学习记录

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,遍历列表def travel(string):index = 0while index < len(string):letter = string[index]print letterindex =
千家信息网最后更新 2025年01月23日python 20171115学习记录

遍历列表

def travel(string):

index = 0

while index < len(string):

letter = string[index]

print letter

index = index + 1

a = "12ww1wwwwww"

print travel(a)

bogon:hhhhh zhouhaijun$ python py_02.py

1

2

w

w

1

w

w

w

w

w

w




0