Head_First_Python学习笔记(一)

时间:2015-05-13 10:25:22   收藏:0   阅读:250

列表操作:

>>> movies= [‘the holy grail‘,‘the life of brain‘,‘the  meaning of life’]
>>> movies.insert(1,1975)
>>> movies.insert(3,1979)
>>> movies.append(1983)
>>> movies
[‘the holy grail‘, 1975, ‘the life of brain‘, 1979, ‘the meaning of life‘, 1983]

列表遍历:

>>> for movie in movies:
    print movie

>>> count = 0
>>> while count < len(movies):
print movies[count]
count++

SyntaxError: invalid syntax(不支持++)

>>> while count < len(movies):
print movies[count]
count = count + 1

在列表中遍历列表

默认不打印内列表

>>> movies = [‘the holy grail‘, 1975, [‘the life of brain‘, 1979,[ ‘the meaning of life‘, 1983]]]
>>> movies
[‘the holy grail‘, 1975, [‘the life of brain‘, 1979,    [‘the meaning of life‘, 1983]]]
>>> for movie in movies:
print movie

the holy grail
1975
[‘the life of brain‘, 1979, [‘the meaning of life‘,     1983]]

递归版本

>>> def iter(movies):
for movie in movies:
    if isinstance(movie,list):
        iter(movie)
    else:
        print movie


>>> movies
[‘the holy grail‘, 1975, [‘the life of brain‘, 1979,    [‘the meaning of life‘, 1983]]]

>>> iter(movies)
the holy grail
1975
the life of brain
1979
the meaning of life
1983

原文:http://blog.csdn.net/qq329735967/article/details/45687661

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!