반응형
질문
어떻게 except:
블록에서 오류/예외를 출력합니까?
try:
...
except:
print(exception)
답변
파이썬 2.6 이상 및 파이썬 3.x:
except Exception as e: print(e)
파이썬 2.5 이하에서는 다음을 사용하십시오:
except Exception,e: print str(e)
반응형
어떻게 except:
블록에서 오류/예외를 출력합니까?
try:
...
except:
print(exception)
파이썬 2.6 이상 및 파이썬 3.x:
except Exception as e: print(e)
파이썬 2.5 이하에서는 다음을 사용하십시오:
except Exception,e: print str(e)
댓글