在python中流动try-except和有什么区别?

时间:2018-06-27 06:23:44

标签: python python-3.x python-2.7 flask

类型1

try:
    pass
except Exception,e:
    return (str(e))

类型2

try:
    pass
except Exception as e:
    return render_template("some.html",error=error)

0 个答案:

没有答案
相关问题