hi,
is there any buitin function like ismethod, to check whether the method exists in the class.
for example,
Class sample:
def fun():
def meth()
object = sample().
passing this object(class instance) and fun(function name of class) as inputs i need to find out, whether this function is a member of class.
Thanks in advance