Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

factorial in python

def fact(n):
  return 1 if (n==0 or n==1) else n*fact(n-1)
fact(3)
 
PREVIOUS NEXT
Tagged: #factorial #python
ADD COMMENT
Topic
Name
6+6 =