如何在 Python 2.5 中将异常分配给局部变量?
在 Python 2.6+ 中,您可以像这样处理异常:
try:
# stuff
except Exception as e:
return 'exception %s' % type(e)
2.5 中的等效项是什么?
In Python 2.6+, you can handle exceptions like this:
try:
# stuff
except Exception as e:
return 'exception %s' % type(e)
What is the equivalent in 2.5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样 :
Like this :