打印异常
#like traceback
except Exception as e:
print(e)
#complete traceback
import traceback
except Exception as e:
#还有其他方法,可以看看
traceback.print_exc()
# like throw an Exception
exception xxx:
rasie
#like traceback
except Exception as e:
print(e)
#complete traceback
import traceback
except Exception as e:
#还有其他方法,可以看看
traceback.print_exc()
# like throw an Exception
exception xxx:
rasie