forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20503.py
More file actions
23 lines (19 loc) · 383 Bytes
/
20503.py
File metadata and controls
23 lines (19 loc) · 383 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# coding=utf-8
"""
find the prime
"""
import math
def is_prime(n):
"""
a integer is prime or not
"""
if n <= 1:
return False
for i in range(2, int(math.sqrt(n) + 1)):
if n % i == 0:
return False
return True
if __name__ == "__main__":
primes = [i for i in range(2,100) if is_prime(i)]
print primes