References: Welcome to Python and Skulpt¶
-
Python (programming language) - Wikipedia - Comprehensive overview of Python's history, design philosophy, syntax, and widespread use in education and industry. Provides essential background on why Python is taught as a first text-based language after Scratch.
-
Turtle graphics - Wikipedia - Explains the origins of turtle graphics in Logo, how the turtle model works, and how Python's
turtlemodule inherits this tradition. Directly supports theimport turtleconcepts introduced in this chapter. -
Comment (computer programming) - Wikipedia - Covers the purpose, syntax, and best practices for code comments across programming languages, with Python single-line comment examples. Reinforces the
#comment syntax students first encounter here. -
Python for Kids - Jason R. Briggs - No Starch Press - Introduces Python to young learners with a friendly tone, colorful examples, and turtle graphics projects that closely mirror the print() and drawing concepts in this chapter.
-
Python Crash Course (3rd Edition) - Eric Matthes - No Starch Press - Chapter 1 walks through running first programs and understanding output with print(), making it an ideal companion for students ready to go deeper after this opening lesson.
-
Python print() Function - W3Schools - Interactive reference for the
print()function covering syntax, parameters, and runnable examples. Perfect for students experimenting with their first Python output statements. -
Welcome to Python for Everybody - Programiz - Beginner-friendly guide to getting started with Python, explaining what Python is and how to run simple programs. Complements the browser-based Skulpt approach with clear, jargon-free explanations.
-
Python Comments - W3Schools - Concise, example-driven page covering single-line and multi-line Python comments. Reinforces the
#comment syntax introduced in this chapter with try-it-yourself code blocks. -
Python turtle module - Python.org Official Docs - The official reference for Python's built-in turtle graphics library, including all drawing commands used in this chapter's first turtle programs.
-
Hour of Python — Intro - Khan Academy Computing - Free, interactive intro-to-Python course with video lessons and in-browser coding exercises. Provides a supportive parallel track for students who want extra practice with print() and basic Python syntax.