Programming (Year 12)
Control Structures
Which of the following is an example of a while loop in Python?
for i in range(5):
while i < 5:
loop i < 5:
while (i < 5) do:
Next