鱼C论坛

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

[技术交流] 零基础入门学习python第三十二讲

[复制链接]
发表于 2017-9-3 15:49:36 | 显示全部楼层 |阅读模式

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

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

x
本帖最后由 足迹 于 2017-9-3 15:50 编辑

错误exception

详细见
Python 标准异常总结
http://bbs.fishc.com/thread-45814-1-1.html
(出处: 鱼C论坛)

主要错误
AssertionError
>>> a=['123']
>>> assert len(a)>0
>>> a.pop()
'123'
>>> assert len(a)>0
Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    assert len(a)>0
AssertionError

AtributeError
>>> a=[123]
>>> a.ser()
Traceback (most recent call last):
  File "<pyshell#5>", line 1, in <module>
    a.ser()
AttributeError: 'list' object has no attribute 'ser'

typeError
>>> 1+'1'
Traceback (most recent call last):
  File "<pyshell#6>", line 1, in <module>
    1+'1'
TypeError: unsupported operand type(s) for +: 'int' and 'str'

zeroDivitionError
>>> 2/0
Traceback (most recent call last):
  File "<pyshell#7>", line 1, in <module>
    2/0
ZeroDivisionError: division by zero
>>> 

IndexError
>>> a=[1,2,3]
>>> a[3]
Traceback (most recent call last):
  File "<pyshell#10>", line 1, in <module>
    a[3]
IndexError: list index out of range

NameError
>>> b
Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    b
NameError: name 'b' is not defined

KeyError
>>> dict1={'one':1,'two':2,'three':3}]
>>> dict1['one']
1
>>> dict1['four']
Traceback (most recent call last):
  File "<pyshell#19>", line 1, in <module>
    dict1['four']
KeyError: 'four'

本帖被以下淘专辑推荐:

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-24 10:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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