Good question. I think the answer is yes.
Answered
Test 2
Blah blah
start = 11
end = 25
for i in range(start, end+1):
if i > 1:
for j in range(2, i):
if(i % j == 0):
break
else:
print(i)
673 Views
2
Answers
6 months ago
5 months ago
Tags
What test