Setup
a working Python Trinket and a saved beginner game project
where the workspace lives and how the course uses one project
a clean Trinket ready for Crewmate Task Dash
Python 101 uses the Trinket workspace on the right side of the page. No local install is required. If your class is multi-day, use Trinket's Save, Remix, or Share tools before you leave.
These are visual references. The playable characters and task stations are drawn with Turtle code inside Trinket.
Use these as references while you build in Trinket. Python 101 draws the playable version with Turtle code, so students can also create their own visual style as long as the game objects stay clear.
Step 1 - Find your workspace
Look at the right side of this page. You should see a Python Trinket with a Run button.
Step 2 - Run a smoke test
Predict before you run
If the background is midnight blue and the writer color is white, what should appear?
Check your thinking
A dark blue output area with a white message in the center.
main.py
This is only a Trinket test. Stage 1 replaces it.
#!/bin/python3
import turtle
screen = turtle.Screen()
screen.bgcolor("midnight blue")
writer = turtle.Turtle()
writer.hideturtle()
writer.color("white")
writer.write("Python 101 is ready", align="center", font=("Arial", 18, "bold"))
turtle.done()
Setup check
- The Trinket rail appears on the right.
- The smoke test runs.
- You know where Trinket's save or share tools are.

