try:
    something here
except:
    print('the whatever error occurred.')

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

1Best Answer
11

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)

Leave a Reply

Your email address will not be published. Required fields are marked *