Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Object-Oriented Python Advanced Objects Constructicons

Still don't understand @classmethod....

Is @classmethod just like a bookmark to tell the people to work on the code that it belongs to the class method above?

1 Answer

Hi Hanwen!

A decorator is a design pattern in Python that allows a user to add new functionality to an existing object without modifying its structure. ... Decorators are usually called before the definition of a function you want to decorate.

From here:

https://www.datacamp.com/community/tutorials/decorators-python

Think of a decorator as a function wrapper that boosts an existing function's capabilities

For example, in this video:

https://www.youtube.com/watch?v=YPMk-EEyOpE

Ridley (Sigourney Weaver) is like a function. Her "loader" suit is like a decorator, making her effectively super-human.

These should help you understand Python decorators better:

https://teamtreehouse.com/library/python-decorators-2

https://www.youtube.com/watch?v=MYAEv3JoenI

https://www.youtube.com/watch?v=r7Dtus7N4pI

https://realpython.com/primer-on-python-decorators/

https://www.programiz.com/python-programming/decorator

https://www.w3schools.in/python-tutorial/metaprogramming/

https://www.python.org/search/?q=Decorators&submit=

I hope that helps.

Stay safe and happy coding!

Thank you Peter