Sobes.tech
Junior — Senior

Conditions for correct method invocation

livecode

Task condition

Under what circumstances will the method execute without raising exceptions?

class Dev:

    @staticmethod
    def hello():
        return "Hello world"
    

print(Dev.hello)
print(Dev.hello())