Programming Notes Summary Ch-8
Programming Notes Summary Ch-8
(Chapter 8)
8.1.1 Variables and Constants
Variables are named data stores that may change during program execution.
Constants are named data stores that do not change during execution.
Python does not enforce constants—everything is treated as a variable.