python3 try except与python2的区别

python2的时候

try:
    raise
except Exception, e:
    print (e)
    return false

python3的时候

try:
    raise
except Exception as e:
    print (e)
    return false

  

上一篇:实现有状态对象或状态机


下一篇:实验三