Skip to content

Instantly share code, notes, and snippets.

@joehakimrahme
Created July 4, 2012 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joehakimrahme/3048027 to your computer and use it in GitHub Desktop.
Save joehakimrahme/3048027 to your computer and use it in GitHub Desktop.
isprime - Definition
def prime(n):
if n <= 1:
return False
for i in xrange(2, n):
if n % i == 0:
return False
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment