As you know in python when you define a function, you should put return
in code to finish function. In code like below how can I finish function:
def f(x) :
if x == 0:
print 'yes'
print 'no'
print f(2)
when I run this code in the last line after printing no there will be None
appeared ?