In [1]:
print 'hello world'
In [2]:
def add2(x):
y = x + 2
return y
In [3]:
i = 5
In [4]:
add2(i)
Out[4]:
In [ ]: