Tecnología y Electrónica, pregunta formulada por avenitaxd, hace 1 mes

PROGRAMA QUE GENERA LOS PRIMEROS N NUMEROS PRIMOS SLICITADOS POR EL USUARIO.
CICLO WHILE O FOR PYTHON

Respuestas a la pregunta

Contestado por S4NTA
0

Respuesta:

(Ver imagen adjunta)

Código:

def main():

   n = int(input())

   primos, ini = [], 2

   while ini != n:

       divisores = []

       for i in range(1, ini+1):

           if ini % i == 0:

               divisores.append(i)

       if len(divisores) == 2:

           primos.append(ini)

       ini += 1

   print(primos)

main()

Adjuntos:

avenitaxd: nojala :c
Otras preguntas