Python Tanks - For loop with several statements

Now we are going to see how for ... in loop can wrap around multiple commands.
At this field we need to repeat the sequence like this:
"move forward, turn right, move forward, turn left"
you can also try this with while loop for better practice!

Prev
#repeat four commands inside 'for' loop #change '3' to necessary value for i in range(3): #fix/add commands inside the loop forward() left() pick()