标签:python
与之前接触过的语言不同,python有针对循环的else,表示如果循环结束都没有执行里面的break语句就进入到这个else,所以这个else在格式上是与for对齐的。
例:
import math for i in range(85, 99): root = math.sqrt(i) if root == int(root): break else: print 'no int root'
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:python
原文地址:http://blog.csdn.net/xiaopangxia/article/details/46850343