This tutorial will take you through the fundamentals of coding, while also creating a game using the Python Turtle.
There are are a few tricks to reading this tutorial.
Red blocks mean you need to wait for a team member to reach a different checkpoint.
Orange blocks mean it is time to test your code.
Green blocks have tips to help you complete a step.
Blue blocks are challenges for you to complete.
Throughout this tutorial you’ll see a few different code snippets.
Here’s an example:
# myfile.py
##
print('Hello, world!')
##
Here’s how we interpret this:
##
Here’s another example:
# myfile.py
##
-print('Hello, World!)
+print('Hello, Earthlings!')
##
Here’s how we interpret this:
Make sure you don’t also copy the +
when adding this code. It is there to show you this is a new line of code, but it is not part of the code itself.