convert a string to a method call ?

Neal Norwitz neal at metaslash.com
Thu Nov 15 11:45:14 EST 2001


Bruce Edge wrote:
> 
> I have an object, say xObj, which has a bunch of methods.
> I have the method I want to call in a string, say str.
> 
> How do I call method str on xObj?

method = getattr(xObj, 'str')
method() # or apply(method)

Neal



More information about the Python-list mailing list