python factoring code example
Example 1: factorial in python
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
n=int(input("Input a number to compute the factiorial : "))
print(factorial(n))
Example 2: factorial in python
def fact(n):
return 1 if (n==0 or n==1) else n*fact(n-1)
fact(3)
Example 3: quick way to find the factor of a number python
def factors(x):
listOfFactors = []
for i in range(1, int(x ** 0.5)):
if x % i == 0:
listOfFactors.append(x)
listOfFactors.append(i)
print(i)