In [1]:
def f(x):return x**2
In [2]:
f(20)
Out[2]:
In [3]:
g=lambda x:x**2
In [4]:
g(20)
Out[4]:
In [ ]: