Decorator 1
Decorator 1
Decorator is a function that can take another function as an argument and extend
its functionality
and return the modified function with extended functionality
result = divisionofNumbers(4,2)
print(result)
result1 = divisionofNumbers(4,0)
print(result)
Decorators are used to add or modify the existing functionality without changing
the original function