Is this the correct way to imitate a static method in Python? Does Python allow static methods?
class C(object):
    def show(self,message):
        print("The message is: {}".format(message))
m = "Hello World!"
C.show(C,message=m)
The message is: Hello World!
 
     
     
    