Login
Remember
Register
Ask a Question
What are Python Decorators?
0
votes
asked
May 16, 2020
in
Python
by
Robindeniel
What are Python Decorators?
#python-decorators
#decorators-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 16, 2020
by
SakshiSharma
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")
...