In this lesson, we’ll learn about @classmethod . The @classmethod decorator is a neat feature in Python that lets you define methods tied to a class itself, not just its instances.if you don’t know decorators yet, I have a lesson in Python Intermediate_006: Decorators in Python (https://medium.com/@staytechrich/python-intermediate-006-decorators-in-python-c7c7aaac7c8b) that’ll help you out. Let’..