Can you use -getattr- to get a function in the current module?

Gabriel Genellina gagsl-py2 at yahoo.com.ar
Mon Sep 3 23:59:24 EDT 2007


En Mon, 03 Sep 2007 20:13:43 -0300, Sergio Correia  
<sergio.correia at gmail.com> escribi�:

> # Module spam.py
>
> import eggs
>
> print getattr(eggs, 'omelet')(100)
>
> That is, I just call the function omelet inside the module eggs and
> evaulate it with the argument 100.
>
> But what if the function 'omelet' is in the module where I do the
> getattr (that is, in spam.py).  If I do any of this

Use globals():

print globals()['omelet'](100)

(Of course this only makes sense when using a variable instead of  
'omelet'...)

-- 
Gabriel Genellina




More information about the Python-list mailing list