Python
文章平均质量分 72
成仔不说话
just a linuxer, a student major in electricity information enginering at HUST
展开
-
Python的异常处理
Python的异常处理能力是很强大的,可向用户准确反馈出错信息。在Python中,异常也是对象,可对它进行操作。所有异常都是基类Exception的成员,所有异常都从基类Exception继承,而且都在exceptions模块中定义,Python自动将所有异常名称放在内建命名空间中,所以程序不必导入exceptions模块即可使用异常。 一旦引发而且没有捕捉SystemExit异常,程序转载 2013-08-08 15:07:40 · 2523 阅读 · 0 评论 -
super() fails with error: TypeError “argument 1 must be type, not classobj”
关于Python的面向对象的编程有这样一个例子:class Bird: def __init__(self): self.hungry = 1 def eat(self): if self.hungry: print 'Aaaah...' self.hungry = 0 else:原创 2013-08-09 15:54:52 · 4121 阅读 · 0 评论