class ShortInputException(Exception):
'''A user-defined exception class.'''
def __init__(self, length, atleast):
Exception.__init__(self)
self.length = length
self.atleast = atleast
try:
s = raw_input('Enter something --> ')
if len(s) < 3:
raise ShortInputException(len(s), 3)
except ShortInputException, x:
print 'ShortInputException: The input was of length %d, \
was expecting at least %d' % (x.length, x.atleast)
この行の構文がわかりません。except ShortInputException, x:
xは何のためにここにありますか?そして、なぜそれがオブジェクトとして機能しているのですか?
この行は何をしますか?: Exception.__init__(self)
ありがとう