Project Euler

Problem 10: Summation of primes

Find the sum of all the primes below two million. Run this solution at repl.io here.

      
        from primelist import primelist

        print(sum(primelist(2000000)))
      
    

back to code menu