Loop control statements - Break, Continue, Pass in Python

Break, Continue, Pass in Python:
  • As we know, in Python we have two types of the loop 'for' and 'while' which allows us to iterate over a list, tuple, string, dictionary, and set. 
  • But there are some cases where we want our loop to exit completely or skip a part of the loop or ignores some particular condition. 

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...