Answers for "python programme to find the prime nos from 1 to n"

3

list of prime numbers in python

n = 20
primes = []

for i in range(2, n + 1):
	for j in range(2, int(i ** 0.5) + 1):
 		if i%j == 0:
 			break
	else:
		primes.append(i)

print(primes)
Posted by: Guest on August-18-2020

Code answers related to "python programme to find the prime nos from 1 to n"

Python Answers by Framework

Browse Popular Code Answers by Language