Not a valid way to start a Python loop

Question:
Which of the following is not a valid way to start a loop in Python?

  1. for i in range(10):
  2. while True:
  3. loop while True:
  4. do while True:
Answer:
C, D - are the correct answers