1 2 3 4 5 6
src = """ def dynamic(x): return x*x """ exec(compile(src, "<dynamic>", "exec"), globals()) print(dynamic(7)) # 49