Python Tanks - Print info for debugging

Now let us regard the same problem and learn usage of 'print(...)' function.
When the code becomes large, it may be useful to send some info to console during its execution. Here the program is almost done, and there are lines to print out when tank reaches certain waypoints.

Prev
#note the program fails before end (on 'pick' command) #so the 'Successfully!' message is never printed #please let us have it fixed! print('Starting...') forward() forward() forward() right() print('First corner have been passed') forward() forward() forward() left() print('Second corner have been passed') forward() forward() forward() print('Lets try to pick the star...') pick() print('Successfully!')