Posts by paje5s • 1 point
1 post
-
0
votes6
answers6752
viewsA: Get the list of prime numbers smaller than N
Another xD solution: #Criei uma função que calcula se o número é primo ou não def primo(numero): primo = True if(numero == 1): return False for i in range(2,numero): if(numero%i == 0): primo = False…