mirror of
https://github.com/billbuchanan/appliedcrypto.git
synced 2026-02-21 11:18:02 +00:00
Fix print statement syntax for Python 3
This commit is contained in:
@@ -18,4 +18,5 @@ def sieve_for_primes_to(n):
|
||||
return [2] + [i*2+1 for i, v in enumerate(sieve) if v and i>0]
|
||||
|
||||
|
||||
print sieve_for_primes_to(test)
|
||||
print (sieve_for_primes_to(test))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user