| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1796 人关注过本帖
标题:有个python的小程序,解释下
取消只看楼主 加入收藏
fenghelong
Rank: 3Rank: 3
来 自:上海
等 级:论坛游侠
威 望:2
帖 子:209
专家分:197
注 册:2011-8-18
结帖率:26.67%
收藏
 问题点数:0 回复次数:0 
有个python的小程序,解释下
程序代码:
class ShortInputException(Exception):
    '''a user-defined exception class.'''
    def __int__(self,length,atleast):
        Exception.__int__(self)
        self.length=length
        self.atleast=atleast
try:
    s=raw_input('enter something-->')
    if len(s)<3:
        raise ShortInputException(len(s),3)
except EOFError:
    print '\nwhy did you do an EOF on me?'
except ShortInputException,x:
    print 'ShortInputException:The input was of length %d,\
          was expectiing at least %d' %(x.length,x.atleast)
else:
    print 'no exception was raised.'
代码中的except ShortInputException,x:其中x前面的都好代表什么意思。
搜索更多相关主题的帖子: 800 python color 
2012-04-13 19:15
快速回复:有个python的小程序,解释下
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016869 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved