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?
for i in range(10):
while True:
loop while True:
do while True:
Answer
:
C, D - are the correct answers