
About immutable vs. constant in Python:
– Immutable: The value cannot change. If you own an immutable shirt, you can’t change its color, or add/remove a button.
– Constant: Once assigned, a name will always refer to a value.
But: Python’s constants are unenforced conventions!
