Keyword | Definition |
---|---|
for statement | a type of iteration where you can repeat a block of code for each value in a list |
indentation | moving a block of code away from the left side of the code editor so that python knows which lines of code to repeat |
iteration | repeating a block of code multiple times |
list | a data structure which can store multiple values in a specific order |
list items | the values stored in a list |
range | python built in function which generates something similar to a list of numbers that starts and stops at certain values |
variable | named location in memory that stores a value. The name stays the same but the value can change when the program runs |