What are class methods?

A class method is a method that is bound to a class rather than its object . It doesn’t require creation of a class instance, much like staticmethod. The difference between a static method and a class method is: Static method knows nothing about the class and just deals with the parameters.

Read more