a function in python that returns the factors of a given number within 0.5 seconds 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 )))