Computer Science
Which of the following are entry controlled loops ?
- if
- if-else
- for
- while
Python Control Flow
5 Likes
Answer
for
while
Answered By
2 Likes
Related Questions
Consider the loop given below :
for i in range(7, 4, -2) : breakWhat will be the final value of i after this loop ?
In for a in __________ : , the blank can be filled with
Consider the loop given below. What will be the final value of i after the loop?
for i in range(10) : breakThe else statement can be a part of .......... statement in Python.