Python Tanks - Intro #1 - commands and comments

Look below! Here is a game field with the tank (on the right), and the place to write our program (on the left).
We can read some instructions there, as the lines starting with '#' are ignored.
Try the Run button, then copy-paste the forward() command program several times and try again.
important - place each command at the beginning of the separate line

Prev
#here is the program to control the tank #lines starting with '#' are comments #the first command to try is "forward()" #here is the program of a single command #press the "Run" button to see how it works forward() #switch to next level when you are ready!