Python Code to find the factorial of given number using recursion on August 29, 2019 Get link Facebook X Pinterest Email Other Apps def fact(n): if n<1: return 1 else: return n* fact(n-1) Comments
Comments
Post a Comment