python 的break语句

回复 收藏
break语句是用来 终止 循环语句的,即哪怕循环条件没有称为False或序列还没有被完全递归,也停止执行循环语句。

一个重要的注释是,如果你从for或while循环中 终止 ,任何对应的循环else块将不执行。
  1. #!/usr/bin/python
  2. # Filename: break.py
  3. while True:
  4.     s = raw_input('Enter something : ')
  5.     if s == 'quit':
  6.         break
  7.     print 'Length of the string is', len(s)
输出
  1. $ python break.py
  2. Enter something : Programming is fun
  3. Length of the string is 18
  4. Enter something : When the work is done
  5. Length of the string is 21
  6. Enter something : if you wanna make your work also fun:
  7. Length of the string is 37
  8. Enter something :       use Python!
  9. Length of the string is 12
  10. Enter something : quit
  11. Done
它如何工作
在这个程序中,我们反复地取得用户地输入,然后打印每次输入地长度。我们提供了一个特别的条件来停止程序,即检验用户的输入是否是'quit'。通过 终止 循环到达程序结尾来停止程序。

输入字符串的长度通过内建的len函数取得。

记住,break语句也可以在for循环中使用。

下一篇  python的continue循环
2011-04-06 10:15 举报
已邀请:

回复帖子,请先登录注册

退出全屏模式 全屏模式 回复
评分
可选评分理由: