KnowledgeBoat Logo
LoginJOIN NOW

Computer Science

What is entry controlled loop? Which loop is entry controlled loop in Python?

Python Funda

31 Likes

Answer

An entry-controlled loop checks the condition at the time of entry. Only if the condition is true, the program control enters the body of the loop. In Python, for and while loops are entry-controlled loops.

Answered By

16 Likes


Related Questions