Tekkaman

导航

 

2013年11月9日

摘要: 【python's try&except&else】 python的try&catch有个好用的东西,else,即try&except&else可以共用,else用于当无异常时执行。socket.getfqdn就是一个教科书般的例子。 except元组:对于 except ValueError, e,这并不会产生一个元组,而是ValueError as e。【自定义异常】 exceptinos是python内置的一个module,一些常用的标准异常也被内置,其中BaseException是所有内置异常的基类,Exception也继承于BaseEx 阅读全文
posted @ 2013-11-09 22:43 Tekkaman 阅读(1101) 评论(0) 推荐(0)