get error in except python code example
Example 1: how to print error in try except python
try:
except Exception as e:
print("ERROR : "+str(e))
Example 2: try catch in python
try:
print("try to run this block")
except:
print("run this bock if there was error in earlier block")
Example 3: catch error python
import traceback
dict = {'a':3,'b':5,'c':8}
try:
print(dict[q])
except:
traceback.print_exc()
Example 4: catch error data with except python
import sys
try:
S = 1/0
except:
e = sys.exc_info()
print(e)
try:
S = 1/0
except ZeroDivisionError as e:
print(e)
Example 5: python 3 except sys error info
1 import sys
2 try:
3 untrusted.execute()
4 except:
5 e = sys.exc_info()[0]
6 write_to_page( "<p>Error: %s</p>" % e )
Example 6: python try except print error
1 (x,y) = (5,0)
2 try:
3 z = x/y
4 except ZeroDivisionError as e:
5 z = e
6 print z