码迷,mamicode.com
首页 > 编程语言 > 详细

Python for循环

时间:2014-10-22 07:38:19      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   for   strong   sp   on   art   代码   

for name in L:

for可以迭代list和tuple

for循环
list或tuple可以表示一个有序集合。如果我们想依次访问一个list中的每一个元素呢?比如 list:
L = [‘Adam‘, ‘Lisa‘, ‘Bart‘]
print L[0]
print L[1]
print L[2]
如果list只包含几个元素,这样写还行,如果list包含1万个元素,我们就不可能写1万行print。
这时,循环就派上用场了。
Python的 for 循环就可以依次把list或tuple的每个元素迭代出来:
L = [‘Adam‘, ‘Lisa‘, ‘Bart‘]
for name in L:
    print name
注意: name 这个变量是在 for 循环中定义的,意思是,依次取出list中的每一个元素,并把元素赋值给 name,然后执行for循环体(就是缩进的代码块)。
这样一来,遍历一个list或tuple就非常容易了。

Python for循环

标签:style   color   ar   for   strong   sp   on   art   代码   

原文地址:http://www.cnblogs.com/xiaoit/p/4042157.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!