Lists
Deprecated Lab — Trinket is shutting down
This lab was written for Trinket.io, which is shutting down in August 2026. The embedded trinket.io links on this page will stop working after that date.
These pages are kept for reference only. The current version of this course now runs every lab as an inline Skulpt editor right in the page — no account or install needed. Start at Chapter 1: Welcome to Python.
Python List¶
How would we create and access a list of colors in Python? Here is a list of colors:
1 | |
1 | |
Sample Code to Draw A Circle with a Color Index¶
1 2 3 4 5 6 7 8 9 10 11 12 | |
Iterating over many colors¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
Drawing¶

Run Sample Program on Trinket¶
Draw a Green Circle Using List
Experiments¶
- Can you change the name of the function to be "petal"?
- What does
print(len(colorList))return? - Go to the Trinket colors page and see the name of other colors you can use.
- What happens if a list does not fit on a single line? Can a list span multiple lines?
- Can you use double quotes and single quotes in the same list?