Negativ numbers no matter how big, will always be less than zero. The correct Answer is A) 45,15,0,-11,-37
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()
Answer:
Your response is correct.
I hope this helped at all.
Answer: Hello!
Network Interface Card (NIC)
Explanation:
Mark me brainest please. Hope I helped! Hope you make an 100%
-Anna♥