如何在Python 2.5中为局部变量分配异常?

时间:2011-05-25 14:33:15

标签: python python-2.5

在Python 2.6+中,您可以处理以下异常:

  try:
    # stuff
  except Exception as e:
    return 'exception %s' % type(e)

2.5中的等价物是什么?

1 个答案:

答案 0 :(得分:11)

像这样:

try:
    # stuff
except Exception, e:
  return 'exception %s' % type(e)