Previous post: Next post: Python #11-Functions in Python Python #13-Let's Play with Python part-1-Fibonacci Series What is recursive function? A recursive function is a function which is called by itself.. Example: def decreasingorder(num): if num==0: print "values is Zero" else: print num decreasingorder(num-1) decreasingorder(2) ...