> Can I define methods which are attributes of class and not attributes of > instance? Yes. It is called staticmethod(). class Math: def add(x, y): return x + y add = staticmethod(add) Math.add(2, 3)