Practical Name: Write a python program to exception handling in ArithmeticError.
_____________________________________________________________
Program :
try:
arithmetic = 5/0
print(arithmetic)
except ArithmeticError:
print('You have just made an Arithmetic error')
Output: