this is my simple code for finding prime numbers
for pt in range(1,100):
isp = 1
for ts in range(1,100):
if(pt%ts ==0):
isp= 0
break
if(isp):
print(pt)
this error
File "/storage/emulated/0/qpython/prime.py", line 3 for ts in range(1,100): ^ IndentationError: unindent does not match any outer indentation level