-
Python报错不要慌,这三个关键词帮你解决问题!
写代码必然会出现错误,而错误处理可以针对这些错误提前做好准备。通常出现错误时,脚本会停止运行,而有了错误处理,脚本就可以继续运行。为此,我们需要了解下面三个关键词:
- try:这是要运行的代码块,可能会产生错误。
- except:如果在try块中出现错误,将执行这段代码。
- finally:不管出现什么错误,都要执行这段代码。
多人学习python,不知道从何学起。
很多人学习python,掌握了基本语法过后,不知道在哪里寻找案例上手。
很多已经做案例的人,却不知道如何去学习更加高深的知识。
那么针对这三类人,我给大家提供一个好的学习平台,免费领取视频教程,电子书籍,以及课程的源代码!??¤
QQ群:1057034340
现在,我们定义一个函数“summation”,将两个数字相加。该函数运行正常。
1
2
3
|
>>> defsummation(num1,num2): print(num1+num2)>>>summation(2,3) 5 |
接下来,我们让用户输入其中一个数字,并运行该函数。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
>>> num1 = 2 >>> num2 = input( "Enter number: " ) Enter number: 3>>> summation(num1,num2)>>> print( "Thisline will not be printed because of the error" ) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-6-2cc0289b921e> in <module> ----> 1 summation(num1,num2) 2 print( "This line will notbe printed because of the error" ) <ipython-input-1-970d26ae8592> in summation(num1, num2) 1 def summation(num1,num2): ----> 2 print(num1+num2) TypeError: unsupported operand type(s) for +: int and str |
“TypeError”错误出现了,因为我们试图将数字和字符串相加。请注意,错误出现后,后面的代码便不再执行。所以我们要用到上面提到的关键词,确保即使出错,脚本依旧运行。
1
2
3
4
|
>> try : summed = 2 + 3 except: print( "Summation is not ofthe same type" )Summation is not of the same type |
可以看到,try块出现错误,except块的代码开始运行,并打印语句。接下来加入“else”块,来应对没有错误出现的情况。
1
2
3
4
5
6
|
>>> try : summed = 2 + 3 except: print( "Summation is not ofthe same type" ) else : print( "There was no errorand result is: " ,summed)There was no error and result is : 5 |
接下来我们用另外一个例子理解。这个例子中,在except块我们还标明了错误类型。如果没有标明错误类型,出现一切异常都会执行except块。
1
2
3
4
5
6
7
8
9
|
>>> try : f = open( test , w ) f.write( "This is a testfile" ) except TypeError: print( "There is a typeerror" ) except OSError: print( "There is an OSerror" ) finally : print( "This will print evenif no error" )This will print even if no error |
现在,故意创造一个错误,看看except块是否与finally块共同工作吧!
1
2
3
4
5
6
7
8
9
10
|
>>> try : f = open( test , r ) f.write( "This is a testfile" ) except TypeError: print( "There is a typeerror" ) except OSError: print( "There is an OSerror" ) finally : print( "This will print evenif no error" )There is an OS error This will print even if no error |
出处:https://www.cnblogs.com/4186c/p/13996372.html
最新更新
python爬虫及其可视化
使用python爬取豆瓣电影短评评论内容
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比