how to get the factors of a number in python code example
Example 1: to find factors of a number in python
def print_factors(x):
print("The factors of",x,"are:")
for i in range(1, x + 1):
if x % i == 0:
print(i)
num = 6
print_factors(num)
Example 2: python find factors of a number
def factors(n):
return set(reduce(list.__add__, \
([i, n//i] for i in range(1, int(n**0.5) + 1) if not n % i )))
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)