# `classmethod`

The [built-in decorator `classmethod`](https://docs.python.org/3/library/functions.html#classmethod) allows you to turn a regular method into a class method that can be called either from the class or from instances of the class.

To solve this you may want to [learn about descriptors first](https://mathspp.com/blog/pydonts/descriptors).
