Posts by rufino • 11 points
1 post
-
0
votes6
answers6752
viewsA: Get the list of prime numbers smaller than N
# LISTA OS NÚMEROS PRIMOS ATÉ X(=50) UM ABAIXO DO OUTRO def primos(x): for i in range(1, x+1): div = 0 for j in range(1, i+1): if(i%j == 0): div = div + 1 if (div ==…