Skip to content

Instantly share code, notes, and snippets.

@ooade
Created September 4, 2016 17:09
Show Gist options
  • Select an option

  • Save ooade/12adc226c815a8f52faa192a70dd541a to your computer and use it in GitHub Desktop.

Select an option

Save ooade/12adc226c815a8f52faa192a70dd541a to your computer and use it in GitHub Desktop.
Prime number
def is_prime(x):
if x < 2:
return False
for i in range(2, x):
if x % i == 0:
return False
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment