Register - Login - Forgotten Password

Lesson 29: Building a Text Adventure Game in Python (Parent Q&A)

This guide explains how Python features combine in a small text adventure game. Open Full Article...

Lesson 29: Building a Text Adventure Game in Python (Teach This Topic)

This guide supports Lesson 29: Building a Text Adventure Game in Python. Open Full Article...

Lesson 28: Building a Number Guessing Game in Python (Parent Q&A)

This guide explains how familiar Python features combine to form a complete number guessing game. Open Full Article...

Lesson 28: Building a Number Guessing Game in Python (Teach This Topic)

This guide helps you examine how familiar Python features combine into a small number guessing game. Open Full Article...

Lesson 28: Building a Number Guessing Game in Python

How can a computer appear to “think” of a secret number and respond intelligently to every guess? Open Full Article...

Lesson 12: Building Your First Python Quiz

How can familiar Python ideas turn into a working quiz? The surprising answer is that Python has no special quiz command. Open Full Article...

Lesson 10: Comparing Values in Python

How can Python tell whether two scores match, or whether one number is bigger than another? Open Full Article...

Lesson 9: Using Else and Elif

What if a program needs to respond to several possible situations instead of giving only a yes-or-no response? Open Full Article...

Lesson 8: Making Decisions With If Statements

How can a Python program choose between different actions when a game score changes? A fictional game provides a clear setting for examining this question. Open Full Article...

Lesson 7: Converting Between Text and Numbers

Why does Python treat "10" + "5" as "105" instead of 15? The answer is that values which look similar on the screen can be different kinds of information. Open Full Article...