Keyword | Definition |
---|---|
condition | an expression which can be calculated into an answer of either True of False |
elif | programming statement which only runs the next block if a condition is met but all other linked conditions haven't been met |
else | programming statement which runs the next block of code if no other linked conditions have been met |
execution | running a program on a computer |
expression | combination of values, variables, operators and function calls |
if | programming statement which only runs the next block of code if a condition is met |
program flow | the order in which the program runs each line (which might not be just top to bottom in order) |
selection | statements in code which tell a program which code to execute next by checking if a condition has been met |