0
Plz tell the mistake in line 5
plz tell what is wrong in this https://code.sololearn.com/cWx4a13UQ0uW/?ref=app
2 Respuestas
+ 9
Indentation of your code.
for i in range(2, number-1):
if number%i == 0:
print (i);
count += 1;
if count==0:
print(number,"is a prime number.");
0
tha u very much