Start a for loop in Python
Question
:
How do you start a for loop in Python?
for i from 0 to 5:
for(i=0; i<5; i++):
for i in range(5):
foreach i in range(5):
Answer
:
C - is the correct answer