Programming (Year 12)
Loops
What will the following code snippet print? python for i in range(3): print(i)
0 1 2
1 2 3
0 1 2 3
Error