《(高职)10.1 错误ppt课件.pptx》由会员分享,可在线阅读,更多相关《(高职)10.1 错误ppt课件.pptx(6页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、10.1 错误Python 程序设计程序设计丁辉 商俊燕 范晓玲第十章第十章 错误和异常错误和异常u10.1 错误错误u10.2 异常异常u10.3 异常处理异常处理u10.4 两种特殊的异常处理方式两种特殊的异常处理方式u小结小结310.1 错误4 Python 中的错误主要有语法错误和逻辑错误。语法错误,也被称作解析错误,例如除零、下标越界、类型错误、名字错误、字典键错误、文件不存在等等,是在学习Python过程中最常遇到的错误。l 语法错误 5/0 #除零错误Traceback (most recent call last): File , line 1, in 5/0ZeroDivis
2、ionError: division by zero lst = 1,2,3,4,5 a = lst0 a1 b = lst5 #下标越界错误Traceback (most recent call last): File , line 1, in b=lst5IndexError: list index out of range a + 2 #类型错误Traceback (most recent call last): File , line 1, in a+2TypeError: must be str, not int print(lst1) #名字错误Traceback (most re
3、cent call last): File , line 1, in print(lst1)NameError: name lst1 is not defined dict1 = name:张三,age:18,sex:女 dict1name张三 dict1age18 dict1sex女 dict1adress #字典键错误Traceback (most recent call ast): File , line 1, in dict1adressKeyError: adress fp=open(rd:test.tt,rb) #文件不存在错误Traceback (most recent call
4、 last): File , line 1, in fp=open(rd:test.tt,rb)FileNotFoundError: Errno 2 No such file or directory: D:test.tt print(hello word!) hello word! print(hello word!) #语法错误SyntaxError: unexpected indent语法错误,在编译或解释时可以发现,并且能给出提示10.1 错误(2)5l 逻辑错误 如以下是将100分转换为5级等级制的一个带有逻辑错误的程序score=85if score=60: print(D) if
5、 score=70: print(C) if score=80: print(B) if score=90: print(A)else:print(E)程序的输出结果是:DCB每个分数只对应一个等级,85分对应的是“B”等,但是现在程序运行后的结果是三个等级,分别是“D”、“C”、“B”等。逻辑错误是指思维过程中违逻辑错误是指思维过程中违反逻辑规律的要求和逻辑规反逻辑规律的要求和逻辑规则而产生的错误。在程序设则而产生的错误。在程序设计中,逻辑错误是符合语法计中,逻辑错误是符合语法规则的,代码能够通过编译规则的,代码能够通过编译或解释,但是程序执行后得或解释,但是程序执行后得不到预期的结果。不到预期的结果。6