Write a Python program to find out: how many integers divide AND = 124678 code example
Example: 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 )))