Table of contents
- Preface
- What is a variable?
- Rules for identifiers
- Let's program
- Miscellaneous
Preface
This module is one in a collection of modules on Python designed for teaching ITSE 1359 Introduction to Scripting Languages: Python at Austin Community College in Austin, TX.
This module provides an introduction to the use of variables, and the required syntax of the identifiers used to represent variables.
Viewing tip
I recommend that you open another copy of this module in a separate browser window and use the following links to easily find and view theFigures while you are reading about them.
(Note to blind and visually impaired students: most of the Figures in this module are presented in plaintext format and should be accessible using an audio screen reader or a braille display.)
Figures
- Figure 1 . Create and use some variables.
- Figure 2 . Assigning the same value to several variables.
- Figure 3 . The truth about pigeonholes.
- Figure 4 . Assign a different value to the variable named b.
- Figure 5 . Python takes care of routine type issues automatically.
- Figure 6 . The magic continuation variable.
- Figure 7 . An illegal variable name.
- Figure 8 . A serious programming problem.
- Figure 9 . Visualizer showing result of a spelling error.
What is a variable?
As the name implies, a variable is something whose value changes over time.
A pigeonhole in memory
As a practical matter, a variable is a pigeonhole in memory, which has a nickname, where you can store values.