| Keyword | Definition |
|---|---|
| import | instruction which tells python how to find and use an external module of code |
| integer | a whole number |
| parameter | data which is passed into a subprogram to customise how it works (e.g. minimum and maximum random numbers to choose between) |
| random | a module which can be imported to tell python how to choose random numbers |
| return value | data which is passed out from a function back to the code which called the function (e.g. a number chosen at random) |