It can be somewhat handy when working in interactive mode, though it has a very informal feel to it.
One (bad) example would go along the lines of:
>>> def f(x): ... if x in dir(scipy): ... print eval("scipy." + x + "(2)") ... >>> f("sin") 0.909297426826
Then you can let the user plot whatever function they want.