Scope of python lambda functions and their parameters
This lambda function is exactly the same as the function f following:
f
g = lambda x: x*2 def f(x): return x*2