在except语句中“,”和“ as”之间有什么区别,例如:
“,”
“ 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:捕获异常
摘要: