Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
hi,
kann man folgenden code schöner schreiben? eventuell ohne das lambda? (das f und g sollen austauschbar bleiben)
f(a, func): return func(a) + func(a+1) g(x, y): return x * y
print f(5, lambda x:g(7,x))