How to print an exception in Python?
Posted By: Anonymous
try:
something here
except:
print('the whatever error occurred.')
How can I print the error/exception in my except:
block?
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)
Answered By: Anonymous
Disclaimer: This content is shared under creative common license cc-by-sa 3.0. It is generated from StackExchange Website Network.