Computer Science, asked by akdaksha22, 11 months ago

What are the four elements of a while loop in python

Answers

Answered by Anonymous
11

Answer:

Like all computer languages python also has while loop concept .

In while loop the condition written in the starting of while loop

If the the control is satisfying the  condition then the code written in the body part will be executed otherwise it will break the continuity  and come out from the loop.

Now in python there is a part called else part of while loop

It is nothing but when the  control is not satisfying the condition this 'else' block of codes will execute.

Similar questions