Keyword | Definition |
---|---|
condition | an expression which can contain values, variables and operators to calculate a value which is either True or False |
indented block | lines of code which share the same amount of tabs or spaces at the start |
iteration | running lines of code multiple times |
program flow | the order in which lines of code are executed |
while statement | form of iteration which runs an indented block of code repeatedly as long as a condition is met |