This document provides instructions and sample code for Exercise 4 of Learn Python the Hard Way. The exercise introduces variables and variable names in Python.
The sample code defines several variables like cars, drivers, passengers, and uses them to calculate things like empty cars, carpool capacity, and average passengers per car. It prints the results.
The document provides extra credit tasks like adding comments to explain each line, reading the file backwards, finding typing errors, and researching floating point numbers. It also shows an example error when a variable is undefined.