Created
February 23, 2017 20:05
-
-
Save krhancoc/69ee2703e7708c95239c8e056697bc49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def nextPrime(n=2): | |
def isPrime(num): | |
if(num == 2): | |
return True | |
for x in range(2, int(num/2) + 1): | |
if num%x == 0: | |
return False | |
return True | |
while(True): | |
if(isPrime(n)): | |
yield n | |
n = n + 1 | |
for num in nextPrime(): | |
print(num) | |
input() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment