saving . . . saved entry and exit control loop concept has been deleted. entry and exit control loop concept has been hidden .
entry and exit control loop concept
Title
Question
sir

please explain the concept of entry and exit control loop in Python language

Python Getting-started-with-for 04-05 min 0-10 sec 22-06-19, 2:23 p.m. mko11

Answers:

Entry controlled loop means condition is checked first and then after body of loop executed.if condition is true loop executes otherwise terminates.Ex is for and while
in Exit control condition is checked after execution of loop body.So. at least loop body executed once.For ex do...while

22-06-19, 2:31 p.m. PriyaBhatnagar


Log-in to answer to this question.