Python中for后接else的语法使用


Posted in Python onMay 18, 2021

0、背景

今天看到了一个比较诡异的写法,for后直接跟了else语句,起初还以为是没有缩进好,查询后发现果然有这种语法,特此分享。之前写过c++和Java,在for后接else还是第一次见。

1、试验

# eg1
import numpy as np
for i in np.arange(5):
    print i
else:
    print("hello?")
# 0
# 1
# 2
# 3
# 4
# hello?

可以发现,在for正常结束后,break中的语句进行了执行。

# eg2
import numpy as np
for i in np.arange(5):
    print i
    if (i == 3):
        break
else:
    print("hello?")
# 0
# 1
# 2
# 3

在这个例子当中,i==3的时候break出了循环,然后else当中的语句就没有执行。

2、总结

总结起来比较简单,如果for循环正常结束,else中语句执行。如果是break的,则不执行。

工程性代码写的比较少,暂时没有想到很好的场景,为了不对其他同学造成干扰,这种形式还是少些一点较好。

官方文档也有解释:

When the items are exhausted (which is immediately when the sequence is empty), the suite in the else clause, if present, is executed, and the loop terminates.

A break statement executed in the first suite terminates the loop without executing the else clause's suite. A continue statement executed in the first suite skips the rest of the suite and continues with the next item, or with the else clause if there was no next item.

https://docs.python.org/2/reference/compound_stmts.html#the-for-statement

补充:python里for和else的搭配

用找质数作为代码示例

for i in range(2,10):
    for n in range(2,i):
        if i % n == 0:
            #print(i, '=', n, '*', i//n)
            break
    else:
        print('found it %s' %i)

注意:这里的 else 并不属于 if 代码块

根据官方文档的解释理解的意思:当迭代的对象迭代完并为空时,位于else的语句将会执行,而如果在for循环里有break时,则会直接终止循环,并不会执行else里的代码

写一个简单例子,用来辅助理解

for i in range(10):
    if i == 7:
        print('found it %s'%i)
        break
else:
    print('not found')

可以先运行代码,看一下运行结果,然后将代码块里的break注释掉再运行一遍,与第一次运行的结果进行比较,就会发现不同

补充:python中for—else的用法,执行完for执行else

结束for循环后执行else

for i in range(5):
     print(i)
else:
    print("打印else")

Python中for后接else的语法使用

以上为个人经验,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python检测远程udp端口是否打开的方法
Mar 14 Python
Python中MySQL数据迁移到MongoDB脚本的方法
Apr 28 Python
python 获取字符串MD5值方法
May 29 Python
python实现人人自动回复、抢沙发功能
Jun 08 Python
python一键去抖音视频水印工具
Sep 14 Python
基于Python实现用户管理系统
Feb 26 Python
python实现统计代码行数的小工具
Sep 19 Python
使用matlab或python将txt文件转为excel表格
Nov 01 Python
使用Django搭建一个基金模拟交易系统教程
Nov 18 Python
解决django的template中如果无法引用MEDIA_URL问题
Apr 07 Python
python for循环赋值问题
Jun 03 Python
详解解Django 多对多表关系的三种创建方式
Aug 23 Python
python源码剖析之PyObject详解
Python3 如何开启自带http服务
May 18 #Python
安装pytorch时报sslerror错误的解决方案
Pytorch 如何实现LSTM时间序列预测
pytorch实现ResNet结构的实例代码
pytorch常用数据类型所占字节数对照表一览
May 17 #Python
python使用tkinter实现透明窗体上绘制随机出现的小球(实例代码)
You might like
【动漫杂谈】关于《请在T台上微笑》
2020/03/03 日漫
php 中文字符入库或显示乱码问题的解决方法
2010/04/12 PHP
php导出word格式数据的代码实例
2013/11/25 PHP
php判断邮箱地址是否存在的方法
2016/02/13 PHP
Jquery选择器 $实现原理
2009/12/02 Javascript
解析dom中的children对象数组元素firstChild,lastChild的使用
2013/07/10 Javascript
jquery动态更换设置背景图的方法
2014/03/25 Javascript
jquery动态添加删除一行数据示例
2014/06/12 Javascript
一个获取第n个元素节点的js函数
2014/09/02 Javascript
jQuery插件pagination实现分页特效
2015/04/12 Javascript
AngularJS中的指令全面解析(必看)
2016/05/20 Javascript
浅谈javascript控制HTML5的全屏操控,浏览器兼容的问题
2016/10/10 Javascript
基于JavaScript实现轮播图原理及示例
2020/04/10 Javascript
jQuery读取本地的json文件(实例讲解)
2017/10/31 jQuery
element-ui 限制日期选择的方法(datepicker)
2018/05/16 Javascript
利用JavaScript缓存远程窃取Wi-Fi密码的思路详解
2018/11/05 Javascript
Python中str is not callable问题详解及解决办法
2017/02/10 Python
Python3 使用cookiejar管理cookie的方法
2018/12/28 Python
Python中整数的缓存机制讲解
2019/02/16 Python
Python神奇的内置函数locals的实例讲解
2019/02/22 Python
python实现根据给定坐标点生成多边形mask的例子
2020/02/18 Python
python用tkinter实现一个简易能进行随机点名的界面
2020/09/27 Python
python time()的实例用法
2020/11/03 Python
法国足球商店:Footcenter
2019/07/06 全球购物
Interrail法国:乘火车探索欧洲,最受欢迎的欧洲铁路通票
2019/08/27 全球购物
教师应聘个人求职信
2013/12/10 职场文书
幼儿园教育教学反思
2014/01/31 职场文书
英语故事演讲稿
2014/04/29 职场文书
2014年国庆节庆祝建国65周年比赛演讲稿
2014/09/21 职场文书
土木工程专业本科生求职信
2014/10/01 职场文书
黑白记忆观后感
2015/06/18 职场文书
大学学生会主席竞选稿怎么写?
2019/08/19 职场文书
python 爬取京东指定商品评论并进行情感分析
2021/05/27 Python
SpringBoot集成Redis,并自定义对象序列化操作
2021/06/22 Java/Android
SQL语句中JOIN的用法场景分析
2021/07/25 SQL Server
Netflix《海贼王》真人版剧集多张片场照曝光
2022/04/04 日漫