python try except print exception code example
Example 1: how to print error in try except python
try:
except Exception as e:
print("ERROR : "+str(e))
Example 2: throwing an exception python
raise Exception("message")
Example 3: python try catch
try:
except ValueError:
except (BadThingError, HorrbileThingError) as e:
except:
else:
finally:
Example 4: try except python
try:
print("I will try to print this line of code")
except:
print("I will print this line of code if an error is encountered")
Example 5: python except print error type
>>> try:
... raise Exception('spam', 'eggs')
... except Exception as inst:
... print(type(inst))
... print(inst.args)
... print(inst)
...
... x, y = inst.args
... print('x =', x)
... print('y =', y)
...
<class 'Exception'>
('spam', 'eggs')
('spam', 'eggs')
x = spam
y = eggs
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