Search code examples
pythonexceptionerror-handling

How do I print an exception in Python?


How do I print the error/exception in the except: block?

try:
    ...
except:
    print(exception)

Solution

  • For Python 2.6 and later and Python 3.x:

    except Exception as e: print(e)
    

    For Python 2.5 and earlier, use:

    except Exception,e: print str(e)