Simple Prime Generator in Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T22:44:40Zhttp://stackoverflow.com/feeds/question/567222http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/567222/simple-prime-generator-in-python1Simple Prime Generator in Pythonmarc lincoln2009-02-19T21:22:24Z2009-07-04T08:11:56Z
<p>Hi, could someone please tell me what I'm doing wrong with this code. It is just printing 'count' anyway. I just want a very simple prime generator (nothing fancy). Thanks a lot. lincoln.</p>
<pre><code>import math
def main():
count = 3
one = 1
while one == 1:
for x in range(2, int(math.sqrt(count) + 1)):
if count % x == 0:
continue
if count % x != 0:
print count
count += 1
</code></pre>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/567253#5672530Answer by starblue for Simple Prime Generator in Pythonstarblue2009-02-19T21:30:06Z2009-02-19T21:30:06Z<ul>
<li><p>The continue statement looks wrong.</p></li>
<li><p>You want to start at 2 because 2 is the first prime number.</p></li>
<li><p>You can write "while True:" to get an infinite loop.</p></li>
</ul>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/567259#5672591Answer by Paul Roub for Simple Prime Generator in PythonPaul Roub2009-02-19T21:31:30Z2009-02-19T21:36:57Z<p>This seems homework-y, so I'll give a hint rather than a detailed explanation. Correct me if I've assumed wrong.</p>
<p>You're doing fine as far as bailing out when you see an even divisor. </p>
<p>But you're printing 'count' as soon as you see even <em>one</em> number that doesn't divide into it. 2, for instance, does not divide evenly into 9. But that doesn't make 9 a prime. You might want to keep going until you're sure <em>no</em> number in the range matches.</p>
<p>(as others have replied, a Sieve is a much more efficient way to go... just trying to help you understand why this specific code isn't doing what you want)</p>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/567266#567266-2Answer by SilentGhost for Simple Prime Generator in PythonSilentGhost2009-02-19T21:32:29Z2009-02-19T21:32:29Z<p>your problem is definition of primes</p>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/567272#5672720Answer by DasBoot for Simple Prime Generator in PythonDasBoot2009-02-19T21:33:16Z2009-02-19T21:33:16Z<p>There is a much more efficient, and pretty easy to code, way to do this:</p>
<p><a href="http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes" rel="nofollow">Sieve_of_Eratosthenes</a></p>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/567281#5672810Answer by David Locke for Simple Prime Generator in PythonDavid Locke2009-02-19T21:35:36Z2009-02-19T21:35:36Z<p>You need to make sure that all possible divisors don't evenly divide the number you're checking. In this case you'll print the number you're checking any time just one of the possible divisors doesn't evenly divide the number.</p>
<p>Also you don't want to use a continue statement because a continue will just cause it to check the next possible divisor when you've already found out that the number is not a prime.</p>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/568618#5686188Answer by eliben for Simple Prime Generator in Pythoneliben2009-02-20T07:42:03Z2009-02-21T10:31:26Z<p>There are some problems:</p>
<ul>
<li>Why do you print out count when it didn't divide by x? It doesn't mean it's prime, it means only that this particular x doesn't divide it</li>
<li><code>continue</code> moves to the next loop iteration - but you really want to stop it using <code>break</code></li>
</ul>
<p>Here's your code with a few fixes, it prints out only primes:</p>
<pre><code>import math
def main():
count = 3
while True:
isprime = True
for x in range(2, int(math.sqrt(count) + 1)):
if count % x == 0:
isprime = False
break
if isprime:
print count
count += 1
</code></pre>
<p>For much more efficient prime generation, see the Sieve of Erastothenes, as others have suggested. Here's a nice, optimized implementation with many comments:</p>
<pre><code>def gen_primes():
""" Generate an infinite sequence of prime numbers.
"""
# Maps composites to primes witnessing their compositeness.
# This is memory efficient, as the sieve is not "run forward"
# indefinitely, but only as long as required by the current
# number being tested.
#
D = {}
# The running integer that's checked for primeness
q = 2
while True:
if q not in D:
# q is a new prime.
# Yield it and mark its first multiple that isn't
# already marked in previous iterations
#
yield q
D[q * q] = [q]
else:
# q is composite. D[q] is the list of primes that
# divide it. Since we've reached q, we no longer
# need it in the map, but we'll mark the next
# multiples of its witnesses to prepare for larger
# numbers
#
for p in D[q]:
D.setdefault(p + q, []).append(p)
del D[q]
q += 1
</code></pre>
<p>Note that it returns a generator.</p>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/568684#5686841Answer by neo for Simple Prime Generator in Pythonneo2009-02-20T08:13:32Z2009-03-18T19:35:23Z<pre><code>def is_prime(num):
"""Returns True if the number is prime
else False."""
if num == 0 or num == 1:
return False
for x in range(2, num):
if num % x == 0:
return False
else:
return True
>> filter(is_prime, range(1, 20))
[2, 3, 5, 7, 11, 13, 17, 19]
</code></pre>
<p>We will get all the prime numbers upto 20 in a list.
I could have used Sieve of Eratosthenes but you said
you want something very simple. ;)</p>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/572730#5727300Answer by david for Simple Prime Generator in Pythondavid 2009-02-21T10:10:20Z2009-02-21T10:10:20Z<p>Here is a <a href="http://code.activestate.com/recipes/576543/" rel="nofollow">good one</a>.</p>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/660070#6600700Answer by fengshaun for Simple Prime Generator in Pythonfengshaun2009-03-18T20:57:56Z2009-03-18T21:04:40Z<p>Here is what I have:</p>
<pre><code>def is_prime(num):
if num < 2: return False
elif num < 4: return True
elif not num % 2: return False
elif num < 9: return True
elif not num % 3: return False
else:
for n in range(5, int(math.sqrt(num) + 1), 6):
if not num % n:
return False
elif not num % (n + 2):
return False
return True
</code></pre>
<p>It's pretty fast for large numbers, as it only checks against already prime numbers for divisors of a number.</p>
<p>Now if you want to generate a list of primes, you can do:</p>
<pre><code># primes up to 'max'
def primes_max(max):
yield 2
for n in range(3, max, 2):
if is_prime(n):
yield n
# the first 'count' primes
def primes_count(count):
counter = 0
num = 3
yield 2
while counter < count:
if is_prime(num):
yield num
counter += 1
num += 2
</code></pre>
<p>using generators here might be desired for efficiency.</p>
<p>And just for reference, instead of saying:</p>
<pre><code>one = 1
while one == 1:
# do stuff
</code></pre>
<p>you can simply say:</p>
<pre><code>while 1:
#do stuff
</code></pre>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/660658#6606580Answer by randle-taylor for Simple Prime Generator in Pythonrandle-taylor2009-03-19T00:37:50Z2009-03-19T00:37:50Z<p>You can create a list of primes using list comprehensions in a fairly elegant manner. Taken from <a href="http://www.secnetix.de/~olli/Python/list%5Fcomprehensions.hawk" rel="nofollow">here:</a></p>
<pre><code>>>> noprimes = [j for i in range(2, 8) for j in range(i*2, 50, i)]
>>> primes = [x for x in range(2, 50) if x not in noprimes]
>>> print primes
>>> [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47]
</code></pre>
http://stackoverflow.com/questions/567222/simple-prime-generator-in-python/1081435#10814350Answer by corlettk for Simple Prime Generator in Pythoncorlettk2009-07-04T03:38:20Z2009-07-04T03:38:20Z<p>Here's a <em>simple</em> (Python 2.6.2) solution... which is in-line with the OP's original request (now six-months old); and should be a perfectly acceptable solution in any "programming 101" course... Hence this post.</p>
<pre><code>import math
def isPrime(n):
for i in range(2, int(math.sqrt(n)+1)):
if n % i == 0:
return False;
return True;
print 2
for n in range(3, 50):
if isPrime(n):
print n
</code></pre>
<p>This simple "brute force" method is "fast enough" for numbers upto about about 16,000 on modern PC's (took about 8 seconds on my 2GHz box).</p>
<p>Obviously, this could be done much more efficiently, by not recalculating the primeness of every even number, or every multiple of 3, 5, 7, etc for every single number... See the <a href="http://en.wikipedia.org/wiki/Sieve%5Fof%5FEratosthenes" rel="nofollow">Sieve of Eratosthenes</a> (see eliben's implementation above), or even the <a href="http://en.wikipedia.org/wiki/Sieve%5Fof%5FAtkin" rel="nofollow">Sieve of Atkin</a> if you're feeling particularly brave and/or crazy.</p>
<p>Caveat Emptor: I'm a python noob. Please don't take anything I say as gospel.</p>