How is the @classmethod decorator applied to a method in a class?

How is the @classmethod decorator applied to a method in a class? Correct Answer Using the @classmethod syntax above the method

The @classmethod decorator is applied above the method definition using the @classmethod syntax.

Related Questions

What is the purpose of the @staticmethod decorator compared to the @classmethod decorator?
What is the purpose of the @classmethod decorator compared to the @staticmethod decorator?
In Python, what is the purpose of the @classmethod decorator?
What is the purpose of the @classmethod decorator in Python classes?
How does the @classmethod decorator differ from @staticmethod?
What is the purpose of the @classmethod decorator in Python?
What is the difference between a class-based decorator and a function-based decorator?