Keyword | Definition |
---|---|
comments | lines of code which are ignored by the computer when you execute the program but which explain the code for any humans who need to change or understand the program |
indentation | moving blocks of code away from the left side of the code editor to determine the program flow |
input | reading data in from the real world into a python program (e.g. letting the user type something in) |
iteration | repeating blocks of code multiple times |
output | displaying the results of a program to the user (e.g. showing something on screen with the print function) |
process | making a calculation or working something out based on the inputs to a program |
program flow | the order in which lines of code are executed |
selection | deciding which lines of code to run next based on whether a condition is True or False |
sequence | running multiple instructions in a specific order |