0
Is there any jump or goto statement in python?
What technique should I use if I want to jump back to any previous line of my code, for repeating the certain code? Isn't there any option except 'while loop'?
2 Answers
+ 2
A function call works similar to a jump with a go back to where it was called.
0
Thanks đ Dragonxiv