Computer Applications

Which of the following is/are not a valid Python loop ?

  1. for
  2. while
  3. iter
  4. repeat

Python Control Flow

2 Likes

Answer

iter, repeat

Reason — iter and repeat are not valid Python loop. for and while are valid loop statements.

Answered By

1 Like


Related Questions