CBSE Class 10 Computer Applications
Question 4 of 26
Python Conditionals and Loops — Question 2
Back to all questions 2
Question Question 2
Which of the following is/are not a valid Python loop ?
- for
- while
- iter
- repeat
iter, repeat
Reason — iter and repeat are not valid Python loop. for and while are valid loop statements.