“Python List Prime Números” Código de respuesta

Lista de números primos en 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)
Light Leopard

Cómo obtener números primos en una lista en Python utilizando la comprensión de la lista

>>> [x for x in range(2, 20)
     if all(x % y != 0 for y in range(2, x))]
[2, 3, 5, 7, 11, 13, 17, 19]
PerkyKing02

Python calcule números primos hasta el número

until = 20
[n for n in range(2, until) if all(n % m != 0 for m in range(2, n-1))]
Upset Unicorn

Python List Prime Números

print([i for i in range(2, int(input("Enter your number: "))+1) if 0 not in [i%n for n in range(2, i)]])
Powerful Pollan

Respuestas similares a “Python List Prime Números”

Preguntas similares a “Python List Prime Números”

Más respuestas relacionadas con “Python List Prime Números” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código