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

Clarrification on @classmethod and cls

Just looking for some clarification on what '@classmethod' and 'cls' actually do and why they are needed as I'm not sure I understand despite completing this task.

1 Answer

Steven Parker
Steven Parker
229,670 Points

A class method is something you would call using the class itself, but a typical method would be called using an instance of the class. So in a typical method, the first argument is a reference to the instance, which is by convention referenced with the name "self".

But in a class method, there is no instance, so the system provides a reference to the class as the first argument. Also as a convention (not enforced technically) this reference is named "cls". This is often used to create a new instance.