본문 바로가기
Python/Python FAQ

Python 파이썬에서 예외를 출력하는 방법은 무엇인가요?, How do I print an exception in Python?

by 베타코드 2023. 5. 25.
반응형

질문


어떻게 except: 블록에서 오류/예외를 출력합니까?

try:
    ...
except:
    print(exception)

답변


파이썬 2.6 이상 및 파이썬 3.x:

except Exception as e: print(e)

파이썬 2.5 이하에서는 다음을 사용하십시오:

except Exception,e: print str(e)
반응형

댓글