# Fibonacci numbers module def fib(n): # write Fibonacci series up to n a, b = 0, 1 while b < n: print b, a, b = b, a+b def fib2(n): # return Fibonacci series up to n print __name__ result = [] a, b = 0, 1 while b < n: result.append(b) a, b = b, a+b return result print "Calling inside the module with input = 4" print "Name Inside the Function:",fib2(4)