最佳答案
在 python 中,有两种捕获异常的方法
except Exception, e:
except Exception as e:
看起来“ as e”是用来向前看的。在 Python 的哪个版本中,这种情况发生了变化?知道为什么吗?