Static methods in Python?

Is it possible to have static methods in Python which I could call without initializing a class, like:

ClassName.static_method()

1
11

Leave a Comment