鱼C论坛

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

[技术交流] 《零基础入门学习python》第三十二讲笔记:异常处理:你不可能总是对的

[复制链接]
发表于 2017-8-30 16:55:40 | 显示全部楼层 |阅读模式

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

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

x
Exception :异常

Assert:  断言:当Assert 后面条件为假时,自动抛出一个异常,为真则继续代码
>>> my_list = ['小甲鱼是帅哥']
>>> assert len(my_list) > 0
>>> my_list.pop()
'小甲鱼是帅哥'
>>> assert len(my_list) > 0   # assert 后面条件为假,抛出AssertionError
Traceback (most recent call last):
  File "<pyshell#21>", line 1, in <module>
    assert len(my_list) > 0
AssertionError
>>> my_list.fishc   # 列表没有fishc方法
Traceback (most recent call last):
  File "<pyshell#22>", line 1, in <module>
    my_list.fishc
AttributeError: 'list' object has no attribute 'fishc'
>>> my_list = [1,2,3]
>>> my_list[3]   # 此例索引没有3
Traceback (most recent call last):
  File "<pyshell#24>", line 1, in <module>
    my_list[3]
IndexError: list index out of range
>>> my_list[2]
3
>>> my_dict = {'one':1,'two':2,'three':3}
>>> my_dict['one']
1
>>> my_dict['four']  # 此例,关键字没有four
Traceback (most recent call last):
  File "<pyshell#28>", line 1, in <module>
    my_dict['four']
KeyError: 'four'
>>> my_dict.get('four')   # 用get方法取没有的键不会报错
>>> fishc  # 没有fishc这个变量
Traceback (most recent call last):
  File "<pyshell#30>", line 1, in <module>
    fishc
NameError: name 'fishc' is not defined
>>> print 'I love FishC.com'   # 语法错误
SyntaxError: invalid syntax (<pyshell#31>, line 1)
>>> 1 + '1'  # 类型错误
Traceback (most recent call last):
  File "<pyshell#32>", line 1, in <module>
    1 + '1'
TypeError: unsupported operand type(s) for +: 'int' and 'str'
>>> 5 / 0  # 除数为0错误
Traceback (most recent call last):
  File "<pyshell#33>", line 1, in <module>
    5 / 0
ZeroDivisionError: int division or modulo by zero
>>>

评分

参与人数 1鱼币 +1 收起 理由
小甲鱼 + 1

查看全部评分

本帖被以下淘专辑推荐:

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-24 13:22

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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