Que > Program to demonstrate Decorators in Python
file.py
def first(msg):
print(msg)
def second(func, msg):
func(msg)
second(first, "Hello!")
Output
Hello!
Que > Program to demonstrate Decorators in Python
def first(msg):
print(msg)
def second(func, msg):
func(msg)
second(first, "Hello!")
Hello!