Can you please check as to why my code can’t be submitted for evaluation. Even though it passes the test cases.
Submission not evaluated
tc = int(input())
for k in range(0, tc):
lower, upper = map(int, input().split(" “))
for num in range (lower,upper+1):
if num>1:
for i in range (2, num):
if (num%i)==0:
break
else:
print(num, end=” “)
print(”\r")
How do I ensure the indentation is correct in the code. Is there any other way to share the code?
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.