document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. from primes import isPrime
  2.  
  3. def factors(n):
  4.     for i in range(1, n+1):
  5.         if n % i == 0:
  6.             if isPrime(i):
  7.                 print(i)
  8.             #    yield(i)
');