except 语句中的 ‘,’ 和 ‘as’ 有什么区别,例如:
try: pass except Exception, exception: pass
和:
try: pass except Exception as exception: pass
2.6 中的第二种语法是否合法?它在 Windows 上的 CPython 2.6 中工作,但 cygwin 中的 2.5 解释器抱怨它无效。
如果它们在 2.6 中都有效,我应该使用哪个?
最终文档是PEP-3110:Catching Exceptions
概括:
as