I am working with a git repo that is showing syntax error for "except Exception, e:"
I am using Python 2.7.
which python version supports syntax like "except Exception, e"?
I am working with a git repo that is showing syntax error for "except Exception, e:"
I am using Python 2.7.
which python version supports syntax like "except Exception, e"?
except Exception, e
In Python 3.x the syntax is:
except Exception as e:
...
As you can see here the same syntax was used in version 2.7.
except Exception,e:
same syntax with:
except Exception as e:
Its not related with python version, You may look PEP document.