Programming (Year 12)
Control Structures
What is the correct syntax for a while loop in Python?
while (condition) {}
while condition: {}
while condition {};
while (condition):
Next