Does return end a loop a little bit confused | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Does return end a loop a little bit confused

def lol(x): for i in range(x): print(i) return lol(10)

6th Aug 2019, 10:26 PM
PHILIP
2 Answers
+ 3
The function of return isn't to end a loop, but in this case its usage will do that anyways. The purpose of return is to return a value from a function. Returning it allows for whatever value returned to be set to variables or printed to the console outside of the function itself, providing more functionality. How the return statement works is that once it is encountered within a function, it will immediately stop all execution of the function it is within continue to where it had been called from. In this case, because you're using a return statement within a loop, it will run the loop once, printing out the value of i for its first iteration, and then subsequently running the return statement which ends all execution of the function, stopping the loop entirely
6th Aug 2019, 10:47 PM
Faisal
Faisal - avatar
+ 2
Yes it will end the loop.
6th Aug 2019, 11:26 PM
Sonic
Sonic - avatar