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
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
Login to add comment