Keyword | Definition |
---|---|
append | a method (code you can call) for any list which allows you to insert a new value into a list |
identifier | the name of a list |
in | python keyword which allows you to check if a value is stored in 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 |
len | built in python function which can work out the length of a list by counting how many values it holds |
list | data structure which allows python to store multiple values in a specific order within the same variable |
remove | a method (code you can call) for any list which allows you to delete a value from a list |
values | the data items that are stored within a list |