0 votes
in Python by
What are Python Decorators?

1 Answer

0 votes
by
Decorator is the most useful tool in Python as it allows programmers to alter the changes in the behavior of class or function.

Example for Python Decorator is:

1

2

3

@gfg_decorator

def hi_decorator():

    print("Gfg")

Related questions

0 votes
asked Jun 12, 2020 in Python by Robindeniel
0 votes
asked Oct 12, 2021 in Python by rajeshsharma
...