Colin Meeks asked: >Does anybody know if it's possible to do something along the following lines >: > >myfunction="test" >x=myfunction >>> def test(): print "Testing!" ... >>> myfunction = globals()["test"] >>> myfunction() Testing! >>> Andrew dalke at acm.org