Computer Science
In for a in __________ : , the blank can be filled with
- an iterable sequence
- a range( ) function
- a single value
- an expression
Python Control Flow
14 Likes
Answer
an iterable sequence
a range( ) function
Answered By
1 Like
Related Questions
Consider the loop given below :
for i in range(3) : passWhat will be the final value of i after this loop ?
Consider the loop given below :
for i in range(7, 4, -2) : breakWhat will be the final value of i after this loop ?
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) : break