大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
创新互联www.cdcxhl.cn八线动态BGP香港云服务器提供商,新人活动买多久送多久,划算不套路!
创新互联-专业网站定制、快速模板网站建设、高性价比息县网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式息县网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖息县地区。费用合理售后完善,10余年实体公司更值得信赖。这篇文章将为大家详细讲解有关python循环结构中如何使用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就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。