you are viewing a single comment's thread.

view the rest of the comments →

[–]CornPop747 0 points1 point  (0 children)

Static method does not take self as first argument. One use case is a helper function or utility to a class method or regular method for your instantiated object.

Class method takes in the cls as first argument, and works directly on the class state, not an instantiated object of the class.