Untitled

Anonymous
plain_text
11/06/2022 11:51 PM
240 B
13
Indexable
numero = int(input("\nDigite um número: "))
lista = []

for i in range(numero + 1):
    if i % 2 == 1 and i != 2:
        lista.append(i)

print("Números primos: ", lista)
Editor is loading...