Praveen Kumar kashyap
Monday, March 28, 2022
factorial using recusing function in python
def fact(n): if n==0: retrun 1 return n * fact(n-1) result = fact(5) print(result)
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)