H2K Infosys Forum

What are Python dec...
 
Notifications
Clear all

What are Python decorators?

 
Member Moderator

Decorators modify the behavior of a function without changing its code, and mastering them is an essential part of advanced Python concepts often covered in python certification online programs.
Example:

 
def decorator(func):
def wrapper():
print("Before function")
func()
return wrapper

Quote
Topic starter Posted : 24/11/2025 7:19 am
Share: