Skip to content

Instantly share code, notes, and snippets.

@craftbyte
Created June 13, 2016 05:06
Show Gist options
  • Save craftbyte/d5afeb0ac2374add1eef600302c338ca to your computer and use it in GitHub Desktop.
Save craftbyte/d5afeb0ac2374add1eef600302c338ca to your computer and use it in GitHub Desktop.
prastevilo
def jePrastevilo(n):
for x in range(2,n):
if n%x==0:
return False
return True
var x = input('Vnesi stevilo:')
if jePrastevilo(x):
print(x, 'je prastevilo')
else:
print(x, 'ni prastevilo')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment