Programme Python pour trouver n nombres premiers
num = 10
for i in range(2,num+1):
for j in range(2,i):
if(i%j == 0):
break
else:
print(i)
GrepDAD