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



原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/185755.html

(0)
上一篇 2021年11月4日
下一篇 2021年11月4日

相关推荐

发表回复

登录后才能评论