Python Return Continue From Function
Can I return continue from a function? A function that contains a while or for loop can also use break and continue to abort the loop. If this would also end the function, the more Pythonic alternative would be to just use return. As a rule of thumb, you can end iterative repetition using break, … Read more