python 20171115学习记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于python 20171115学习记录的主要内容,如果未能解决你的问题,请参考以下文章