Answer and Explanation:
def loop(start, stop, step):
return_string = ""
if step == 0:
step = 1
if start > stop: # the bug was here, fixed it
step = abs(step) * -1
else:
step = abs(step)
for count in range(start, stop, step):
return_string += str(count) + " "
return return_string.strip()
Maybe in atosave, Computers mostly save what your working on :3
Answer:
Occurs when a specific language construct was expected, but something else was provided.
One surface is larger than the other surface