I want to basically turn a list element into a function with the do function. This way any pre-written funcction i can call by just use a do(list[x]).
What im tryin
You don't need the extra functions, and you don't need to turn them into a string either:
def func(): print "python" def func1(): print "is" def func2(): print "awesome" funcs = [func, func1, func2] for function in funcs: function()