鱼C论坛

 找回密码
 立即注册
查看: 3526|回复: 0

[学习笔记] 032异常处理:你不可能总是对的

[复制链接]
发表于 2017-7-8 23:26:01 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
1.AssertionError:断言语句(assert)失败
>>> my_list = ['小甲鱼是帅哥']
>>> assert len(my_list) > 0
>>> my_list.pop()
'小甲鱼是帅哥'
>>> assert len(my_list) > 0
Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    assert len(my_list) > 0
AssertionError
2.AttributeError:尝试访问未知的对象属性
>>> my_list.fishc
Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    my_list.fishc
AttributeError: 'list' object has no attribute 'fishc'
3.IndexError:索引超出序列范围
>>> my_list = [1, 2, 3]
>>> my_list[3]
Traceback (most recent call last):
  File "<pyshell#6>", line 1, in <module>
    my_list[3]
IndexError: list index out of range
>>> my_list[2]
3
4.KeyError:字典中查找一个不存在的关键字
>>> my_dict = {'one':1, 'two':2, 'three':3}
>>> my_dict['one']
1
>>> my_dict['four']
Traceback (most recent call last):
  File "<pyshell#10>", line 1, in <module>
    my_dict['four']
KeyError: 'four'
5.NameError:尝试访问一个不存在的变量
>>> fishc
Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    fishc
NameError: name 'fishc' is not defined
6.OSError:操作系统产生的异常(例如打开一个不存在的文件)
file_name = input('请输入需要打开的文件名:')
f = open(file_name)
print('文件的内容是:')
for each_line in f:
print(each_line)
========== RESTART: F:\BaiduYunDownload\《零基础入门学习Python》\py\032-1.py ==========
请输入需要打开的文件名:record
Traceback (most recent call last):
  File "F:\BaiduYunDownload\《零基础入门学习Python》\py\032-1.py", line 2, in <module>
    f = open(file_name)
FileNotFoundError: [Errno 2] No such file or directory: 'record'
7.SyntaxError:Python的语法错误
>>> print 'I love FishC.com'
SyntaxError: Missing parentheses in call to 'print'
>>> print('I love FishC.com')
I love FishC.com
8.TypeError:不同类型间的无效操作
>>> 1 + '1'
Traceback (most recent call last):
  File "<pyshell#14>", line 1, in <module>
    1 + '1'
TypeError: unsupported operand type(s) for +: 'int' and 'str'
9.ZeroDivisionError:除数为零
>>> 5 / 0
Traceback (most recent call last):
  File "<pyshell#15>", line 1, in <module>
    5 / 0
ZeroDivisionError: division by zero

评分

参与人数 1荣誉 +5 鱼币 +5 收起 理由
小甲鱼 + 5 + 5 支持楼主!

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 17:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表