A term for any kind of information you’d like to store and use in a program. Values fall into one of two main categories: constants and variables.
Some examples of values include:
- Boolean (i.e. True/False)
- Integer (e.g. 1, -3, 42)
- Float (e.g. 8.3, 3.1415, -10.0)
- String (e.g. “a string”, ‘this is also a string’)