标签: 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)