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

Python for else 循环控制

时间:2015-06-02 23:20:26      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

for语句可用来遍历某一对象,还具有一个可选的else块。
如果for循环未被break终止,则执行else块中的语句。
break 在需要时终止for循环
continue 跳过位于其后的语句,开始下一轮循环。
for语句的格式如下:

for <> in <对象集合>if <条件>:
        break
    if <条件>:
        continue
    <其他语句>
else:
    <>

示例

fruits = [banana, apple, orange, tomato, pear, grape]

print You have...
for f in fruits:
    if f == tomato:
        print A tomato is not a fruit! # (It actually is.)
        break
    print A, f
else:
    print A fine selection of fruits!

 

Python for else 循环控制

标签:

原文地址:http://www.cnblogs.com/wangwp/p/4547943.html

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