Computer Science
The else statement can be a part of .......... statement in Python.
- if
- def
- while
- for
Python Control Flow
8 Likes
Answer
if
while
for
Answered By
1 Like
Related Questions
Which of the following are entry controlled loops ?
Consider the loop given below. What will be the final value of i after the loop?
for i in range(10) : breakWhich of the following are jump statements ?
Consider the following code segment :
for i in range(2, 4): print(i)What values(s) are printed when it executes?