Skip to content

Instantly share code, notes, and snippets.

@galihboy
Last active October 6, 2021 18:21
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 galihboy/8d20f396a23fbd39a83bb731b1111727 to your computer and use it in GitHub Desktop.
Save galihboy/8d20f396a23fbd39a83bb731b1111727 to your computer and use it in GitHub Desktop.
Pemeriksaan bilangan prima
bilangan = 5
prima = True
for i in range(2, bilangan):
if (bilangan % i == 0):
prima = False
break
print(prima)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment