class Person:
    @staticmethod
    def hello():
        print('Hello!')
        
print(type(Person.hello))
print(type(Person().hello))