Skip to main content

Loops in PYTHON (For loop and While loop)

Why do we need loops in python ? And how it makes our codes more simpler and shorter ? 

Sometimes we want to repeat a set of statements in our programme for instance.

If we want to print 1 - 1000 in our python programme. Then it is not easy to print every number separately. Thus we need loops because using only 2-3 lines of code we can do this.

Loops make it easy for a programmer to tell the computer, which set of instruction to repeat as much as times we want.


Types of loops in Python :-

1.) While loop

2.) For loop

We will look into these one by one !

1.) WHILE LOOP :-

The syntax of a while loop looks like this :

while(condition):
    #code accordingly
    #this code will keeps working until the condition is satisfied

In while loops, the condition is checked first. If comes true, the body code will starts running else not.
If the loop is started it will runs until the condition becomes false.

Now lets write a code to print all the numbers from 1 - 100 :-



Now another code to print all the numbers from 1-100 which are divisible 3 :-






2.) FOR LOOP :-

A for loop is used to iterate through a sequence like list, tuple, or string.
The syntax of the for loop is :-

mylist  =  [4, 2, 8, 4, 78]
for i in range(0, len(mylist)+1):
     print(mylist[i])

Now we will try the same programmes for For loop which were used in the while loop section.

First code to print the number from 1-100 :-



Now the second code is to print all the numbers from 1-100 which are divisible by 3 :-




Now we have the basic knowledge of the loops and rest depends on your practice.

What are break statements in python loops ? And to use them in our code ?

Break is used to come out of the loop when encountered. It instructs the programme to exit the loop now.

Use in code :-





Hope you like this tutorial. Please share it with your friends and help them learning python. In the next tutorial we will learn about function and recursion in python.



John Veer
Contact mail id  -  john.veer.utube@gmail.com
Thanks for reading !
                                                                         

Comments

Popular posts from this blog

First Python Programme

  If you are here, then I think you are a python enthusiast. On this website, we upload daily posts on new and basic programme for beginners.  So let’s start with the first code i.e. Hello World programme. So first of all you you should know how to give print command in python. To print we write print(“Hello World”). What’s inside the small brackets will be printed. So the programme is : print("Hello World") Hello World So, as we can see above, when we implemented the print command, the thing between the small bracket is printed. So let’s see some other examples In this example, we will store an integer value in a variable. And then print the integer will the help,of that variable. So let’s get started a = 3 print(a) 3 Another example Now we will store a string into a variable and then print the string with the help of that variable #if we put hastag in front of any line in python. Then there is no effect. #for storing the string in a variable, we have to enclose the whole s...

Doubly Linked List in PYTHON

  Here is the Python code for the Doubly Linked List :- #first of all creat a class node class Node :     def __init__ ( self , data ):         self . data = data         self . next = None         self . prev = None #now create a class of doubly linked list class DLL :     def __init__ ( self ):         self . head = None #function to insert the node at begining     def insertatbeg ( self , data ):         newnode = Node ( data )         newnode . prev = None         newnode . next = self . head         self . head = newnode #function to insert the node at the end     def insertatend ( self , data ):         newnode = Node ( data )         if self . head is None :             self . head ...

Queues in PYTHON

  The Python Code for Queue is here :- class Node: def __init__(self, data): self.data = data self.next = None class Queue: def __init__(self): self.front = self.rear = None def enqueue(self, data): newnode = Node(data) newnode.next = self.rear self.rear = newnode if self.front is None: self.front = newnode def dequeue(self): temp = self.rear while temp.next is not self.front: temp = temp.next self.front = temp temp.next = None def traverse(self): temp = self.rear while temp is not None: print(temp.data, end = " --> ") temp = temp.next print("None") new = Queue() new.enqueue(4) new.enqueue(1) new.enqueue(0) new.enqueue(2) new.traverse() new.dequeue() new.traverse() new.dequeue() new.traverse() 2 --> 0 --> 1 --> 4 --> None 2 --> 0 --> 1 --> None 2 ...