Blog Rizauddin
And He found you lost and guided [you]. [93:7]
Pages
Home
Python
LaTeX
Linux
Windows
Travelog
About
Showing posts with label
prime number
.
Show all posts
Showing posts with label
prime number
.
Show all posts
Wednesday, April 16, 2008
Python: Prime Number
This Python script will generate a list of prime number.
def isPrime(x):
for i in range(2, x):
if x%i == 0:
return false
return true
for c in range(1,10):
if isPrime(c):
print c,
output:
>>> 1 2 3 5 7
Older Posts
Home
Subscribe to:
Posts ( Atom )