python循环中else的使用示例
小编给大家分享一下python循环中else的使用示例,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
创新互联总部坐落于成都市区,致力网站建设服务有成都网站设计、成都网站制作、网络营销策划、网页设计、网站维护、公众号搭建、微信小程序、软件开发等为企业提供一整套的信息化建设解决方案。创造真正意义上的网站建设,为互联网品牌在互动行销领域创造价值而不懈努力!
众多语言中都有if else这对条件选择组合,但是在python中还有更多else使用的地方,比如说循环for,或者while都可以和else组合。
下面简单介绍一下for-else while-else组合
循环组合中的else执行的情况下是循环正常结束(即不是使用break退出)。如下列代码:
numbers= [1,2,3,4,5] for nin numbers: if (n >5): print('the value is %d '%(n)) break else: print('the for loop does not end with break') i= 0 while(numbers[i] <5): print('the index %d value is %d'%(i, numbers[i])) if (numbers[i] <0) : break i= i+ 1 else: print('the loop does not end with break') numbers= [1,2,3,4,5] for nin numbers: if (n >5): print('the value is %d '%(n)) break else: print('the for loop does not end with break') i= 0 while(numbers[i] <5): print('the index %d value is %d'%(i, numbers[i])) if (numbers[i] <0) : break i= i+ 1 else: print('the loop does not end with break')
执行结果如下:
C:\Python27>python.exe for_else.py thefor loop doesnot end withbreak the index0 valueis 1 the index1 valueis 2 the index2 valueis 3 the index3 valueis 4 the loop doesnot end withbreak
以上是“python循环中else的使用示例”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!
网站名称:python循环中else的使用示例
分享网址:http://pwwzsj.com/article/iiiido.html