Skip to content

Instantly share code, notes, and snippets.

@krhancoc
Created February 23, 2017 20:05
Show Gist options
  • Save krhancoc/69ee2703e7708c95239c8e056697bc49 to your computer and use it in GitHub Desktop.
Save krhancoc/69ee2703e7708c95239c8e056697bc49 to your computer and use it in GitHub Desktop.
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