• 2022-06-27
    异常抛出语句(异常错误警示、异常提取语句)总是要与条件语句if以及异常处理语句try联合使用的,其他使用格式大致为:
    A: try:...if条件:raiseException(异常信息)breakexceptExceptionaserr:print(err)
    B: try:...if条件:raiseException(异常信息)breakexceptException(异常信息):print(err)
    C: try:...if条件:raiseexceptbreakexceptExceptionaserr:print(err)
    D: try:...raiseException(异常信息)exceptExceptionaserr:print(err)