Y9

5e: Perform common operations on lists or individual items

Keywords:
Python
Test your self on these keywords and definitions using the games below or Play random game
KeywordDefinition
appenda method (code you can call) for any list which allows you to insert a new value into a list
identifierthe name of a list
inpython keyword which allows you to check if a value is stored in a list
indexthe position in a list (where 0 means the first item in the list)
indexing expressiona 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
lenbuilt in python function which can work out the length of a list by counting how many values it holds
listdata structure which allows python to store multiple values in a specific order within the same variable
removea method (code you can call) for any list which allows you to delete a value from a list
valuesthe data items that are stored within a list
Keyword games:
Resources: