5
Python试试…除逗号与“ as”外
在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中均有效,那我应该使用哪个?
246
python
python-2.6