'Creates a lambda function. This is equivalent to calling RunStatement("lambda " & Code).
'<code>Dim Numbers As PyWrapper = Py.WrapObject(Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))
'Numbers = Py.Map_(Py.Lambda("x: 2 * x"), Numbers).ToList
'Numbers.Print
'Numbers = Py.Filter(Py.Lambda("x: x < 10"), Numbers).ToList
'Numbers.Print2("even numbers smaller than 10:", "", False)</code>