-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprime number.py
48 lines (43 loc) · 1.11 KB
/
prime number.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# checking prime number or not
n = int(input("Enter your number : "))
if n==1 or n==0 :
print("0 and 1 is netheir a prime number nor composite number ")
else :
for i in range(2, n):
if n%i==0 :
print(n ,"is not a prime number ")
break
else :
print(n," is a prime number ")
break
# printing all natural number till n;
print("prime numbers till "+str(n) + " are: " )
if n<=2 :
print(1)
else :
for i in range(2,n):
if i>2 :
for j in range(2,i):
if(i % j== 0):
break
else :
print(i,end=" ")
# printing first n prime numbers
print ("\nFirst "+ str(n) +" prime numbers are : ")
count =0
value =1
res = []
output = []
while count <n :
if value >2 :
for i in range(2,n):
if value % i == 0:
break
else :
res.append(value)
count+=1
value +=1
for j in range(0 , len(res)):
if res[j] not in output :
output.append(res[j])
print(str(output))