I have the following code:
funcs = [] for i in range(10): def func(): print i funcs.append(func) for f in funcs: f()
The pro
Returning func from another function is safest.
func