| Keyword | Definition |
|---|---|
| identifier | the name of a list |
| index | the position in a list (where 0 means the first item in the list) |
| indexing expression | a calculation (which could be a combination of values, variables, function calls and operators) to work out which position in a list you want to look at |
| list | data structure which allows python to store multiple values in a specific order within the same variable |
| values | the data items that are stored within a list |