# your code goes here
class Test:

    def mamku(self):
        return "mamku ebal"

    def call(self, method):
        if hasattr(self, method):
            return self.method()

test = Test()
print test.call("mamku")