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