What does @staticmethod mean when applied to a method inside a class?
-
A
The method can only be called once per instance
-
B
The method receives no implicit first argument — no self or cls
-
C
The method is automatically inherited by all subclasses
-
D
The method is private and cannot be called from outside the class