Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 27ea6be4db5c4ab161dbab335782ff77 > files > 183

python-pyrex-0.9.9-6.mga4.noarch.rpm

def primes(kmax):
    p = []
    k = 0
    n = 2
    while k < kmax:
        i = 0
        while i < k and n % p[i] <> 0:
            i = i + 1
        if i == k:
            p.append(n)
            k = k + 1
        n = n + 1
    return p