Keyword | Definition |
---|---|
assignment | setting the value stored in a variable to a specific value |
increment | an instruction to increase the value stored in a variable by a certain amount (usually increasing it just by one) |
operator | a symbol which tells python to perform an operation (e.g. add, subtract, divide or multiply) |
output | displaying something to the screen (e.g. the value stored in a variable) |
value | the data stored in a variable |
variable | a named location in memory which can store a value. The name should describe what data represents and its value might change when the program runs. |