Ubah suatu metode menjadi metode statis.
@staticmethod
class C: @staticmethod def f(arg1, arg2, argN): ...
def regular_function(): ... class C: method = staticmethod(regular_function)