Python Continue, Break, and Pass Keywords
In previous lessons, you learned about different types of loops such as for loop, while loop and for-each loop. Each of the loop terminate successfully. What if you want your loop to exit in between execution, or you want to skip some of the iterations. There are three keywords in python programming that does that … Read more