Python - What are Static and Class Methods?
Have you ever seen some Python code and wondered what @staticmethod and @classmethod do ?
Well, let me explain ...
@staticmethod
A static method is a method that knows nothing about the class or instance it was called on. The class instance, therefore, is NOT passed in as an implicit first argument