首页 > 编程语言 > 详细

Python for else 循环控制

时间:2015-06-02 23:18:37      阅读:216      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!