Name: Anonymous 2010-04-29 9:40
Suppose we have an implementation of Python in which functions support currying. We write:
What output will be generated?
def f(x, y, z):
print(x, y, z)
f(y=2)(1)(3)What output will be generated?